From 4121d98cec8bd1260b4d7608f82797f63beb0f36 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 19 Apr 2000 19:57:45 +0000 Subject: use /poweroff and /halt to determine whether powering off --- rc.d/init.d/halt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'rc.d/init.d') 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 -- cgit v1.2.1