diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | initscripts.spec | 5 | ||||
-rwxr-xr-x | sysconfig/network-scripts/ifup-ippp | 2 |
3 files changed, 9 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2001-08-22 Than Ngo <than@redhat.com> + * sysconfig/network-scripts/ifup-ippp + - fix return code of isdnctrl (bug #52225) + 2001-08-21 Than Ngo <than@redhat.com> * sysconfig/network-scripts/ifup-ippp - fix Bringing up isdn device again. It works now correct. diff --git a/initscripts.spec b/initscripts.spec index 785250ca..3f80abd3 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.24 +Version: 6.25 License: GPL Group: System Environment/Base Release: 1 @@ -239,6 +239,9 @@ rm -rf $RPM_BUILD_ROOT %dir /etc/locale/*/LC_MESSAGES %changelog +* Wed Aug 22 2001 Than Ngo <than@redhat.com> +- fix return code of isdnctrl (bug #52225) + * Tue Aug 21 2001 Than Ngo <than@redhat.com> - fix Bringing up isdn device again. It works now correct. diff --git a/sysconfig/network-scripts/ifup-ippp b/sysconfig/network-scripts/ifup-ippp index 4fff2903..0619ac7c 100755 --- a/sysconfig/network-scripts/ifup-ippp +++ b/sysconfig/network-scripts/ifup-ippp @@ -49,7 +49,7 @@ function log_echo() function log_isdnctrl() { logger -p daemon.info -t ifup-ppp isdnctrl $* - isdnctrl $* >/dev/null 2>&1 + isdnctrl $* >/dev/null 2>&1 || exit 1 } function create_option_file() |