summaryrefslogtreecommitdiffstats
path: root/abs/core/poweroff-scripts/poweroff.script
blob: 22369834dcf1dc3fa89628265039954bf387cca7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
MYTH_RUN_STATUS="1"
. /etc/profile
INIT=`ps -p 1 -o comm=`
chvt 1
if [ x$INIT = xrunit ]
then
    echo "System will shutdown NOW" |wall
    chvt 1
    runit-init 0
else
    systemctl poweroff $@
fi