aboutsummaryrefslogtreecommitdiffstats
path: root/sysconfig
diff options
context:
space:
mode:
authorThan Ngo <than@redhat.com>2001-06-27 11:28:40 +0000
committerThan Ngo <than@redhat.com>2001-06-27 11:28:40 +0000
commit1aaee3c9fcbb7c0326ffb404acd0820ccf7c6477 (patch)
tree68e5edddfad7dd2072898dc48ba0f3b4568ccbf2 /sysconfig
parentf573a7e992587ca13791d33d344e582af811dff6 (diff)
downloadinitscripts-1aaee3c9fcbb7c0326ffb404acd0820ccf7c6477.tar
initscripts-1aaee3c9fcbb7c0326ffb404acd0820ccf7c6477.tar.gz
initscripts-1aaee3c9fcbb7c0326ffb404acd0820ccf7c6477.tar.bz2
initscripts-1aaee3c9fcbb7c0326ffb404acd0820ccf7c6477.tar.xz
initscripts-1aaee3c9fcbb7c0326ffb404acd0820ccf7c6477.zip
- fix pap/chap authentication for syncppp
- support ippp options
Diffstat (limited to 'sysconfig')
-rwxr-xr-xsysconfig/network-scripts/ifup-ippp9
1 files changed, 7 insertions, 2 deletions
diff --git a/sysconfig/network-scripts/ifup-ippp b/sysconfig/network-scripts/ifup-ippp
index 91584fc2..a560603b 100755
--- a/sysconfig/network-scripts/ifup-ippp
+++ b/sysconfig/network-scripts/ifup-ippp
@@ -246,10 +246,15 @@ function addprovider()
[ -n "$ISDN_HOSTNAME" ] && options="$options hostname $ISDN_HOSTNAME"
# Set authentication
- for i in $AUTH ; do
+ #for i in $AUTH ; do
+ # options="$options $i"
+ #done
+
+ # add ppp options
+ for i in $PPPOPTIONS ; do
options="$options $i"
done
-
+
# check dns entry
if [ -z "$DNS1" -a -z "$DNS2" ]; then
options="$options ms-get-dns"