diff options
author | Preston Brown <pbrown@redhat.com> | 1998-11-12 14:50:53 +0000 |
---|---|---|
committer | Preston Brown <pbrown@redhat.com> | 1998-11-12 14:50:53 +0000 |
commit | 4006bd7cca91e3197db1149e0cc0f7598592d1cc (patch) | |
tree | 83e36feda9f629d949cfb66fa2bc9b12e7b7219e | |
parent | 246f59248128f19c333ab44ad5398ea333a4f838 (diff) | |
download | initscripts-4006bd7cca91e3197db1149e0cc0f7598592d1cc.tar initscripts-4006bd7cca91e3197db1149e0cc0f7598592d1cc.tar.gz initscripts-4006bd7cca91e3197db1149e0cc0f7598592d1cc.tar.bz2 initscripts-4006bd7cca91e3197db1149e0cc0f7598592d1cc.tar.xz initscripts-4006bd7cca91e3197db1149e0cc0f7598592d1cc.zip |
halt passed the -i flag to disable network interfaces (new halt option).r3-80
-rw-r--r-- | initscripts.spec | 5 | ||||
-rwxr-xr-x | rc.d/init.d/halt | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/initscripts.spec b/initscripts.spec index aa6ec4f6..d0fc4e8a 100644 --- a/initscripts.spec +++ b/initscripts.spec @@ -1,6 +1,6 @@ Summary: inittab and /etc/rc.d scripts Name: initscripts -%define version 3.79 +%define version 3.80 Version: %{version} Copyright: GPL Group: Base @@ -155,6 +155,9 @@ rm -rf $RPM_BUILD_ROOT %doc sysconfig.txt %changelog +* Thu Nov 12 1998 Preston Brown <pbrown@redhat.com> +- halt now passed the '-i' flag so that network interfaces disabled + * Tue Nov 10 1998 Michael Johnson <johnsonm@redhat.com> - handle new linuxconf output for ipaliases diff --git a/rc.d/init.d/halt b/rc.d/init.d/halt index 64f9f100..5134770b 100755 --- a/rc.d/init.d/halt +++ b/rc.d/init.d/halt @@ -60,5 +60,6 @@ done # Now halt or reboot. echo "$message" [ -f /fastboot ] && echo "On the next boot fsck will be skipped." -eval $command -d +eval $command -i -d + |