summaryrefslogtreecommitdiffstats
path: root/abs/core/poweroff-scripts/poweroff.script
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2014-02-17 00:09:25 (GMT)
committerJames Meyer <james.meyer@operamail.com>2014-02-19 19:03:05 (GMT)
commit16bb1dce51851d71fc173ce662443b10222438d3 (patch)
treedbd30553e67e1d57f08581ea691dfd33da364059 /abs/core/poweroff-scripts/poweroff.script
parent48c7caf0470b8693b849ac13454fdac4a697e812 (diff)
downloadlinhes_pkgbuild-16bb1dce51851d71fc173ce662443b10222438d3.zip
linhes_pkgbuild-16bb1dce51851d71fc173ce662443b10222438d3.tar.gz
linhes_pkgbuild-16bb1dce51851d71fc173ce662443b10222438d3.tar.bz2
poweroff-scripts:
update binary path to /usr/bin refs #961
Diffstat (limited to 'abs/core/poweroff-scripts/poweroff.script')
-rw-r--r--abs/core/poweroff-scripts/poweroff.script7
1 files changed, 5 insertions, 2 deletions
diff --git a/abs/core/poweroff-scripts/poweroff.script b/abs/core/poweroff-scripts/poweroff.script
index 99779eb..211c9ee 100644
--- a/abs/core/poweroff-scripts/poweroff.script
+++ b/abs/core/poweroff-scripts/poweroff.script
@@ -1,11 +1,14 @@
#!/bin/bash
+MYTH_RUN_STATUS="1"
. /etc/profile
INIT=`ps -p 1 -o comm=`
chvt 1
if [ x$INIT = xrunit ]
then
- /sbin/halt-runit $@
+ echo "System whill shutdown NOW" |wall
+ chvt 1
+ runit-init 0
else
- /sbin/poweroff.init $@
+ systemctl poweroff $@
fi