summaryrefslogtreecommitdiffstats
path: root/abs/core/poweroff-scripts/halt.script
blob: dacf16ae07f02ecd546af4b7b7c71e6f492fce21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash
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
chvt 1
if [ x$INIT = xrunit ]
then
 	 /sbin/halt-runit $@
else
     	/sbin/halt.init $@
fi