summaryrefslogtreecommitdiffstats
path: root/abs/core/poweroff-scripts/halt.script
diff options
context:
space:
mode:
Diffstat (limited to 'abs/core/poweroff-scripts/halt.script')
-rwxr-xr-xabs/core/poweroff-scripts/halt.script19
1 files changed, 8 insertions, 11 deletions
diff --git a/abs/core/poweroff-scripts/halt.script b/abs/core/poweroff-scripts/halt.script
index b2e8170..223d3e8 100755
--- a/abs/core/poweroff-scripts/halt.script
+++ b/abs/core/poweroff-scripts/halt.script
@@ -2,19 +2,16 @@
MYTH_RUN_STATUS="1"
. /etc/profile
INIT=`ps -p 1 -o comm=`
-# if [ x$1 = x-w ]
-# then
-# /sbin/halt.init -w
-# exit 0
-# fi
-if [ x$INIT = xrunit ]
+#ignore -w option
+if [ x$1 = x-w ]
then
- echo "System will shutdown NOW" |wall
- chvt 1
- runit-init 0
+ exit 0
+fi
+if [ x$INIT = xrunit ]
+then
+ shutdown -h
else
- systemctrl $@
+ systemctl poweroff $@
fi
-