diff options
author | Bill Nottingham <notting@redhat.com> | 2000-07-12 19:16:21 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2000-07-12 19:16:21 +0000 |
commit | 6fd8ae953acae647fc38ede7829f7e333f96bc94 (patch) | |
tree | acf74f95fd4c41a2021357b4cffae77bc1769efe /ppp/ip-up | |
parent | 938773a4df4410918f8a78a15545806172767140 (diff) | |
download | initscripts-6fd8ae953acae647fc38ede7829f7e333f96bc94.tar initscripts-6fd8ae953acae647fc38ede7829f7e333f96bc94.tar.gz initscripts-6fd8ae953acae647fc38ede7829f7e333f96bc94.tar.bz2 initscripts-6fd8ae953acae647fc38ede7829f7e333f96bc94.tar.xz initscripts-6fd8ae953acae647fc38ede7829f7e333f96bc94.zip |
move ip-up.local to after ifup-post, so that it has proper name resolution. Also, kill unused hearbeat stuff.
Diffstat (limited to 'ppp/ip-up')
-rw-r--r-- | ppp/ip-up | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -8,11 +8,8 @@ REALDEVICE=$1 export PATH=/sbin:/usr/sbin:/bin:/usr/bin -[ -x /etc/ppp/ip-up.local ] && /etc/ppp/ip-up.local "$@" - -# Used for clustering heartbeat monitoring stuff. -[ -x /etc/ppp/ip-up.heart ] && /etc/ppp/ip-up.heart "$@" - /etc/sysconfig/network-scripts/ifup-post ifcfg-${LOGDEVICE} +[ -x /etc/ppp/ip-up.local ] && /etc/ppp/ip-up.local "$@" + exit 0 |