summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/runit/halt.script
blob: b49ed7ca6300075b69092aa9aebc161a69a30af2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
. /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