diff options
author | Than Ngo <than@redhat.com> | 2001-06-27 11:28:40 +0000 |
---|---|---|
committer | Than Ngo <than@redhat.com> | 2001-06-27 11:28:40 +0000 |
commit | 1aaee3c9fcbb7c0326ffb404acd0820ccf7c6477 (patch) | |
tree | 68e5edddfad7dd2072898dc48ba0f3b4568ccbf2 | |
parent | f573a7e992587ca13791d33d344e582af811dff6 (diff) | |
download | initscripts-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
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | initscripts.spec | 6 | ||||
-rwxr-xr-x | sysconfig/network-scripts/ifup-ippp | 9 |
3 files changed, 19 insertions, 3 deletions
@@ -1,3 +1,10 @@ +2001-06-27 Than Ngo <than@redhat.com> + * initscripts.spec: 5.94-1 + + * sysconfig/network-scripts/ifup-ippp + fix pap/chap authentication for syncppp + support ippp options + 2001-06-22 Bill Nottingham <notting@redhat.com> * initscripts.spec: 5.93-1 diff --git a/initscripts.spec b/initscripts.spec index e3e249e9..d18a3809 100644 --- a/initscripts.spec +++ b/initscripts.spec @@ -1,6 +1,6 @@ Summary: The inittab file and the /etc/init.d scripts. Name: initscripts -Version: 5.93 +Version: 5.94 License: GPL Group: System Environment/Base Release: 1 @@ -222,6 +222,10 @@ rm -rf $RPM_BUILD_ROOT %ghost %attr(0664,root,utmp) /var/run/utmp %changelog +* Wed Jun 27 2001 Than Ngo <than@redhat.com> +- fix pap/chap authentication for syncppp +- support ippp options + * Mon Jun 25 2001 Bill Nottingham <notting@redhat.com> - add ifup-wireless 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" |