diff options
author | Bill Nottingham <notting@redhat.com> | 1999-02-03 19:40:36 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-02-03 19:40:36 +0000 |
commit | e77775963e4fa5b8ab9149befe36a066dd4e7e91 (patch) | |
tree | a01be4c6e2c55c8ab18730fe8032f91cfac12cb1 /rc.d/init.d | |
parent | 78f1af4fcbcc1193db5e9db036359e14cc98afd9 (diff) | |
download | initscripts-e77775963e4fa5b8ab9149befe36a066dd4e7e91.tar initscripts-e77775963e4fa5b8ab9149befe36a066dd4e7e91.tar.gz initscripts-e77775963e4fa5b8ab9149befe36a066dd4e7e91.tar.bz2 initscripts-e77775963e4fa5b8ab9149befe36a066dd4e7e91.tar.xz initscripts-e77775963e4fa5b8ab9149befe36a066dd4e7e91.zip |
rcs2log > Changelog
Diffstat (limited to 'rc.d/init.d')
-rwxr-xr-x | rc.d/init.d/halt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rc.d/init.d/halt b/rc.d/init.d/halt index d902d105..3d6df5cc 100755 --- a/rc.d/init.d/halt +++ b/rc.d/init.d/halt @@ -15,7 +15,7 @@ PATH=/sbin:/bin:/usr/bin:/usr/sbin case "$0" in *halt) message="The system is halted" - command="halt -p" + command="halt" ;; *reboot) message="Please stand by while rebooting the system..." @@ -61,6 +61,6 @@ if [ -f /fastboot ]; then elif [ -f /forcefsck ]; echo "On the next boot fsck will be forced." fi -eval $command -i -d +eval $command -i -d -p |