summaryrefslogtreecommitdiffstats
path: root/abs/core/poweroff-scripts/poweroff.script
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2014-04-05 19:49:18 (GMT)
committerBritney Fransen <brfransen@gmail.com>2014-04-05 19:49:18 (GMT)
commitbdefc1e81c89dbb12e7e914a9f1f220ee5ed1714 (patch)
treef8ed2037e4dab50bf0cdb4cdcb6a8b28d5f00694 /abs/core/poweroff-scripts/poweroff.script
parentde6718e325ed5fdcb2b15cb567732321ecb14790 (diff)
downloadlinhes_pkgbuild-bdefc1e81c89dbb12e7e914a9f1f220ee5ed1714.zip
linhes_pkgbuild-bdefc1e81c89dbb12e7e914a9f1f220ee5ed1714.tar.gz
linhes_pkgbuild-bdefc1e81c89dbb12e7e914a9f1f220ee5ed1714.tar.bz2
poweroff-scripts: fix shutdown/reboot issue with /usr/bin move. refs #961
Diffstat (limited to 'abs/core/poweroff-scripts/poweroff.script')
-rw-r--r--abs/core/poweroff-scripts/poweroff.script13
1 files changed, 8 insertions, 5 deletions
diff --git a/abs/core/poweroff-scripts/poweroff.script b/abs/core/poweroff-scripts/poweroff.script
index 2236983..dc42a14 100644
--- a/abs/core/poweroff-scripts/poweroff.script
+++ b/abs/core/poweroff-scripts/poweroff.script
@@ -2,13 +2,16 @@
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
- echo "System will shutdown NOW" |wall
- chvt 1
- runit-init 0
+ shutdown -h
else
systemctl poweroff $@
fi
-