diff options
author | Michael K. Johnson <johnsonm@redhat.com> | 1997-11-06 20:24:15 +0000 |
---|---|---|
committer | Michael K. Johnson <johnsonm@redhat.com> | 1997-11-06 20:24:15 +0000 |
commit | 76b9c85768b2afdb146bcad72f120d4cd624b2f3 (patch) | |
tree | 86f555f0cfd87fdd18b3ad6c7d6d8763c3d2cbc4 | |
parent | ededfe707d0ea05fbf6985997befdbbe4cbc5b18 (diff) | |
download | initscripts-76b9c85768b2afdb146bcad72f120d4cd624b2f3.tar initscripts-76b9c85768b2afdb146bcad72f120d4cd624b2f3.tar.gz initscripts-76b9c85768b2afdb146bcad72f120d4cd624b2f3.tar.bz2 initscripts-76b9c85768b2afdb146bcad72f120d4cd624b2f3.tar.xz initscripts-76b9c85768b2afdb146bcad72f120d4cd624b2f3.zip |
PPP debugging fixed.
PPP Persisting fixed.
Moved netreport stuff into one place.
-rwxr-xr-x | sysconfig/network-scripts/ifdown-post | 15 | ||||
-rwxr-xr-x | sysconfig/network-scripts/ifup-post | 8 | ||||
-rwxr-xr-x | sysconfig/network-scripts/ifup-ppp | 8 | ||||
-rw-r--r-- | sysconfig/network-scripts/network-functions | 12 |
4 files changed, 21 insertions, 22 deletions
diff --git a/sysconfig/network-scripts/ifdown-post b/sysconfig/network-scripts/ifdown-post index bf1c0c18..5df3f564 100755 --- a/sysconfig/network-scripts/ifdown-post +++ b/sysconfig/network-scripts/ifdown-post @@ -4,18 +4,11 @@ cd /etc/sysconfig/network-scripts -# These are currently unused. -# CONFIG=$1 -# . network-functions -# source_config +CONFIG=$1 +. network-functions +source_config # Notify programs that have requested notification -( cd /var/run/netreport || exit - for i in * ; do - [ -f $i ] && \ - kill -SIGIO $i >/dev/null 2>&1 || \ - rm -f $i >/dev/null 2>&1 - done -) +do_netreport exit 0 diff --git a/sysconfig/network-scripts/ifup-post b/sysconfig/network-scripts/ifup-post index dd1f8389..6a57d866 100755 --- a/sysconfig/network-scripts/ifup-post +++ b/sysconfig/network-scripts/ifup-post @@ -35,12 +35,6 @@ if [ `hostname` = '(none)' -o `hostname` = localhost -a ${DEVICE} != lo ]; then fi # Notify programs that have requested notification -( cd /var/run/netreport || exit - for i in * ; do - [ -f $i ] && \ - kill -SIGIO $i >/dev/null 2>&1 || \ - rm -f $i >/dev/null 2>&1 - done -) +do_netreport exit 0 diff --git a/sysconfig/network-scripts/ifup-ppp b/sysconfig/network-scripts/ifup-ppp index 9f57d838..ecdeae97 100755 --- a/sysconfig/network-scripts/ifup-ppp +++ b/sysconfig/network-scripts/ifup-ppp @@ -66,8 +66,9 @@ fi if [ -n "${PAPNAME}" ] ; then opts="$opts name ${PAPNAME}" fi -if [ -n "${DEBUG}" ] ; then +if [ "${DEBUG}" = yes ] ; then opts="$opts debug" + chatdbg="-v" fi CHATSCRIPT=/etc/sysconfig/network-scripts/chat-$DEVNAME @@ -83,7 +84,7 @@ while : ; do /usr/sbin/pppd -detach $opts $MODEMPORT $LINESPEED \ remotename $DEVICE ipparam $DEVICE \ ${PPPOPTIONS} \ - connect "/usr/sbin/chat ${DEBUG:+-v} -f $CHATSCRIPT" + connect "/usr/sbin/chat $chatdbg -f $CHATSCRIPT" # exit if we're not supposed to persist or our lock file has disappeared if [ "$PERSIST" != "yes" -o ! -f /var/run/ppp-$DEVICE.dev ]; then @@ -93,8 +94,6 @@ while : ; do size=`wc -c < /var/run/ppp-$DEVICE.dev` - rm -f /var/run/ppp-$DEVICE.dev - if [ $size = 0 ]; then # pppd never connected timeout=$RETRYTIMEOUT @@ -109,6 +108,7 @@ while : ; do sleep $timeout || { # sleep was killed + rm -f /var/run/ppp-$DEVICE.dev exit 0 } diff --git a/sysconfig/network-scripts/network-functions b/sysconfig/network-scripts/network-functions index c45c8467..7e5947c5 100644 --- a/sysconfig/network-scripts/network-functions +++ b/sysconfig/network-scripts/network-functions @@ -16,3 +16,15 @@ source_config () . $PARENTCONFIG fi } + +do_netreport () +{ + # Notify programs that have requested notification + ( cd /var/run/netreport || exit + for i in * ; do + [ -f $i ] && \ + kill -SIGIO $i >/dev/null 2>&1 || \ + rm -f $i >/dev/null 2>&1 + done + ) +} |