about summary refs log tree commit diff
path: root/3
blob: 05fae3c4c9379c1b7d02de61da18be9e9b597af3 (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
#!/bin/sh
# vim: set ts=4 sw=4 et:

PATH=/usr/bin:/usr/sbin

. /etc/runit/functions
detect_virt
[ -r /etc/rc.conf ] && . /etc/rc.conf

if [ -e /run/runit/reboot ]; then
    touch /etc/runit/reboot
    chmod 100 /etc/runit/reboot
fi

echo
msg "Waiting for services to stop...\n"
sv -w196 force-stop /var/service/*
sv exit /var/service/*

stty onlcr

msg "Saving random seed...\n"
dd if=/dev/urandom of=/var/lib/random-seed count=1 bs=512 >/dev/null 2>&1

if [ -z "$VIRTUALIZATION" -a -n "$HARDWARECLOCK" ]; then
    hwclock --systohc ${HARDWARECLOCK:+--$(echo $HARDWARECLOCK |tr A-Z a-z)}
fi

halt -w  # for utmp

if [ -z "$VIRTUALIZATION" ]; then
    msg "Stopping udev...\n"
    udevadm control --exit
fi

msg "Sending TERM signal to processes...\n"
pkill --inverse -s0,1 -TERM
sleep 5
msg "Sending KILL signal to processes...\n"
pkill --inverse -s0,1 -KILL

msg "Unmounting filesystems, disabling swap...\n"
umount /tmp
swapoff -a
umount -r -a -t nosysfs,noproc,nodevtmpfs,notmpfs

if [ -z "$VIRTUALIZATION" ]; then
    msg "Remounting rootfs read-only...\n"
    mount -o remount,ro /
fi

sleep 1
sync