diff options
author | Bill Nottingham <notting@redhat.com> | 2000-04-19 19:57:45 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2000-04-19 19:57:45 +0000 |
commit | 4121d98cec8bd1260b4d7608f82797f63beb0f36 (patch) | |
tree | 6f4f642324dc1ab78e48f8d6c9f9330cbdc0f89b /rc.d | |
parent | 52642683037ae0760efd18fe2e3446df7c552dae (diff) | |
download | initscripts-4121d98cec8bd1260b4d7608f82797f63beb0f36.tar initscripts-4121d98cec8bd1260b4d7608f82797f63beb0f36.tar.gz initscripts-4121d98cec8bd1260b4d7608f82797f63beb0f36.tar.bz2 initscripts-4121d98cec8bd1260b4d7608f82797f63beb0f36.tar.xz initscripts-4121d98cec8bd1260b4d7608f82797f63beb0f36.zip |
use /poweroff and /halt to determine whether powering off
Diffstat (limited to 'rc.d')
-rwxr-xr-x | rc.d/init.d/halt | 8 | ||||
-rwxr-xr-x | rc.d/rc.sysinit | 2 |
2 files changed, 8 insertions, 2 deletions
diff --git a/rc.d/init.d/halt b/rc.d/init.d/halt index 857db62d..36263c7c 100755 --- a/rc.d/init.d/halt +++ b/rc.d/init.d/halt @@ -116,4 +116,10 @@ if [ -f /fastboot ]; then elif [ -f /forcefsck ]; then echo "On the next boot fsck will be forced." fi -eval $command -i -d -p + +HALTARGS="-i -d" +if [ -f /poweroff -o ! -f /halt]; then + HALTARGS="$HALTARGS -p" +fi + +eval $command $HALTARGS diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 43b08b80..e7cf8a04 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -452,7 +452,7 @@ if [ -x /sbin/quotaon ]; then fi # Clean out /etc. -rm -f /fastboot /fsckoptions /forcefsck +rm -f /fastboot /fsckoptions /forcefsck /halt /poweroff # Do we need (w|u)tmpx files? We don't set them up, but the sysadmin might... _NEED_XFILES= |