diff options
author | Michael K. Johnson <johnsonm@redhat.com> | 1999-11-12 13:08:14 +0000 |
---|---|---|
committer | Michael K. Johnson <johnsonm@redhat.com> | 1999-11-12 13:08:14 +0000 |
commit | ace3709ffda40425302264550d445a102fadb388 (patch) | |
tree | 0f7edf2ccc87732749ff539b40a2ac668077ea00 | |
parent | 0ced94e6d34197dc286c660c72055a438d9ac51b (diff) | |
download | initscripts-ace3709ffda40425302264550d445a102fadb388.tar initscripts-ace3709ffda40425302264550d445a102fadb388.tar.gz initscripts-ace3709ffda40425302264550d445a102fadb388.tar.bz2 initscripts-ace3709ffda40425302264550d445a102fadb388.tar.xz initscripts-ace3709ffda40425302264550d445a102fadb388.zip |
move PPPOPTIONS to the end
use noauth always to work around new defaultroot behaviour
-rwxr-xr-x | sysconfig/network-scripts/ifup-ppp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sysconfig/network-scripts/ifup-ppp b/sysconfig/network-scripts/ifup-ppp index 201900b0..dd7ab2a6 100755 --- a/sysconfig/network-scripts/ifup-ppp +++ b/sysconfig/network-scripts/ifup-ppp @@ -90,14 +90,15 @@ fi if [ -n "$WVDIALSECT" ] ; then exec /usr/sbin/pppd -detach $opts $MODEMPORT $LINESPEED \ remotename $DEVICE ipparam $DEVICE \ - ${PPPOPTIONS} \ linkname $DEVICE \ noauth \ + ${PPPOPTIONS} \ connect "/usr/bin/wvdial --remotename $DEVICE --chat $WVDIALSECT" else exec /usr/sbin/pppd -detach $opts $MODEMPORT $LINESPEED \ remotename $DEVICE ipparam $DEVICE \ - ${PPPOPTIONS} \ linkname $DEVICE \ + noauth \ + ${PPPOPTIONS} \ connect "/usr/sbin/chat $chatdbg -f $CHATSCRIPT" fi |