aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThan Ngo <than@redhat.com>2001-10-29 15:29:58 +0000
committerThan Ngo <than@redhat.com>2001-10-29 15:29:58 +0000
commit4826b887874b50dec78c28716a85b74b30140180 (patch)
treec25b53623c76bde57b253af08a5102f9cc82468e
parent451c892796f8ed5f351a702d1debfc89c7c1e44f (diff)
downloadinitscripts-4826b887874b50dec78c28716a85b74b30140180.tar
initscripts-4826b887874b50dec78c28716a85b74b30140180.tar.gz
initscripts-4826b887874b50dec78c28716a85b74b30140180.tar.bz2
initscripts-4826b887874b50dec78c28716a85b74b30140180.tar.xz
initscripts-4826b887874b50dec78c28716a85b74b30140180.zip
- fix bug in channel bundling if MSN is missed
- support DEBUG option
-rw-r--r--ChangeLog5
-rw-r--r--initscripts.spec6
-rwxr-xr-xsysconfig/network-scripts/ifup-ippp5
3 files changed, 10 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index d230fa5a..d8a67862 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-10-29 Than Ngo <than@redhat.com>
+ * sysconfig/network-scripts/ifup-ippp
+ fix bug in channel bundling if MSN is missed
+ support DEBUG option
+
2001-09-21 romanm <romanm@redhat.com>
* po/sl.po: partially translated
diff --git a/initscripts.spec b/initscripts.spec
index 8a8fbfa8..d10ee6b4 100644
--- a/initscripts.spec
+++ b/initscripts.spec
@@ -1,6 +1,6 @@
Summary: The inittab file and the /etc/init.d scripts.
Name: initscripts
-Version: 6.41
+Version: 6.42
License: GPL
Group: System Environment/Base
Release: 1
@@ -240,6 +240,10 @@ rm -rf $RPM_BUILD_ROOT
%dir /etc/locale/*/LC_MESSAGES
%changelog
+* Mon Oct 29 2001 Than Ngo <than@redhat.com>
+- fix bug in channel bundling if MSN is missed
+- support DEBUG option
+
* Wed Sep 19 2001 Than Ngo <than@redhat.com>
- don't show user name by DSL connection
diff --git a/sysconfig/network-scripts/ifup-ippp b/sysconfig/network-scripts/ifup-ippp
index 1f5b5756..de314e58 100755
--- a/sysconfig/network-scripts/ifup-ippp
+++ b/sysconfig/network-scripts/ifup-ippp
@@ -13,7 +13,6 @@ cd /etc/sysconfig/network-scripts
# Get global network configuration
[ -f /etc/sysconfig/network ] && . /etc/sysconfig/network
-DEBUG="no"
GATEWAY=""
# set device
@@ -195,10 +194,6 @@ function addprovider()
# set channel bundling
if [ "$BUNDLING" = "yes" -o "$BUNDLING" = "on" ] && [ -n "$SLAVE_DEVICE" ]; then
[ -z "$SLAVE_MSN" ] && SLAVE_MSN="$MSN"
- if [ -z "$SLAVE_MSN" ]; then
- log_echo "Error: $1: SLAVE_MSN not set"
- exit 1
- fi
[ -z "$SLAVE_PHONE_OUT" ] && SLAVE_PHONE_OUT="$PHONE_OUT"
[ -z "$SLAVE_PHONE_IN" ] && SLAVE_PHONE_IN="$PHONE_IN"
[ -z "$SLAVE_HUPTIMEOUT" ] && SLAVE_HUPTIMEOUT="$HUPTIMEOUT"