summaryrefslogtreecommitdiffstats
path: root/abs/core/poweroff-scripts/poweroff.script
diff options
context:
space:
mode:
Diffstat (limited to 'abs/core/poweroff-scripts/poweroff.script')
-rw-r--r--abs/core/poweroff-scripts/poweroff.script14
1 files changed, 10 insertions, 4 deletions
diff --git a/abs/core/poweroff-scripts/poweroff.script b/abs/core/poweroff-scripts/poweroff.script
index 99779eb..dc42a14 100644
--- a/abs/core/poweroff-scripts/poweroff.script
+++ b/abs/core/poweroff-scripts/poweroff.script
@@ -1,11 +1,17 @@
#!/bin/bash
+MYTH_RUN_STATUS="1"
. /etc/profile
INIT=`ps -p 1 -o comm=`
-chvt 1
+
+#ignore -d option
+if [ x$1 = x-d ]
+then
+ exit 0
+fi
+
if [ x$INIT = xrunit ]
then
- /sbin/halt-runit $@
+ shutdown -h
else
- /sbin/poweroff.init $@
+ systemctl poweroff $@
fi
-