blob: ffc40568605deaf2dc0cf1aedf1646f70a4e0129 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#!/bin/bash
MYTH_RUN_STATUS="1"
. /etc/profile
usage() { echo "Usage: $0 [-h | -r] [-t <delay> (opt)]" 1>&2; exit 1; }
INIT=`ps -p 1 -o comm=`
if [ x$INIT = xrunit ]
then
halt=""
reboot=""
delay=""
while getopts hrt: name
do
case $name in
h) halt=1 ;;
r) reboot=1 ;;
t) delay="$OPTARG"
if [ x$delay = "xnow" ]
then
delay=0
fi
;;
*) usage ;;
esac
done
if [ x$delay = x ]
then
delay=0
fi
if [ x$halt = x1 ]
then
chvt 1
echo "System will shutdown in $delay seconds..." | wall
sleep $delay
runit-init 0
exit 0
fi
if [ x$reboot = x1 ]
then
chvt 1
echo "System will reboot in $delay seconds..." | wall
sleep $delay
runit-init 6
exit 0
fi
usage
else
systemctl poweroff $@
fi
|