aboutsummaryrefslogtreecommitdiffstats
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
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
-rw-r--r--ChangeLog7
-rw-r--r--initscripts.spec6
-rwxr-xr-xsysconfig/network-scripts/ifup-ippp9
3 files changed, 19 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 701d7e3e..8309e63e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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"