about summary refs log tree commit diff
path: root/shutdown
blob: 9b6bba40e2db3eb6e582c0e0e049c6eba72093e2 (plain) (blame)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/bin/sh
# shutdown - shutdown(8) lookalike for runit

single() {
  runsvchdir single
}

abort() {
  printf '%s\n' "$1" >&2
  exit 1
}

usage() {
  abort "Usage: ${0##*/} [-fF] [-kchPr] time [warning message]"
}

action=single

while getopts akrhPHfFnct: opt; do
  case "$opt" in
    a|n|H) abort "'-$opt' is not implemented";;
    t) ;;
    f) touch /fastboot;;
    F) touch /forcefsck;;
    k) action=true;;
    c) action=cancel;;
    h|P) action=halt;;
    r) action=reboot;;
    [?]) usage;;
  esac
done
shift $((OPTIND - 1))

[ $# -eq 0 ] && usage

time=$1; shift
message="${*:-system is going down}"

if [ "$action" = "cancel" ]; then
  kill "$(cat /run/runit/shutdown.pid)"
  if [ -e /etc/nologin ] && ! [ -s /etc/nologin ]; then
    rm /etc/nologin
  fi
  echo "${*:-shutdown cancelled}" | wall
  exit
fi

touch /run/runit/shutdown.pid 2>/dev/null || abort "Not enough permissions to execute ${0#*/}"
echo $$ >/run/runit/shutdown.pid

case "$time" in
  now) time=0;;
  +*) time=${time#+};;
  *:*) abort "absolute time is not implemented";;
  *) abort "invalid time";;
esac

for break in 5 0; do
  [ "$time" -gt "$break" ] || continue
  [ "$break" = 0 ] && touch /etc/nologin

  printf '%s in %s minutes\n' "$message" "$time" | wall
  printf 'shutdown: sleeping for %s minutes... ' "$(( time - break ))"
  sleep $(( (time - break) * 60 ))
  time="$break"
  printf '\n'

  [ "$break" = 0 ] && rm /etc/nologin
done

printf '%s NOW\n' "$message" | wall

$action