diff 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" |