about summary refs log tree commit diff
path: root/3
blob: 65df780509e5bb82c7434b3dfecb6246e46432da (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
#!/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
    chmod 100 /run/runit/reboot
fi

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

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 1
msg "Sending KILL signal to processes...\n"
pkill --inverse -s0,1 -KILL

if [ -z "$VIRTUALIZATION" ]; then
    msg "Unmounting filesystems, disabling swap...\n"
    swapoff -a
    umount -r -a -t nosysfs,noproc,nodevtmpfs,notmpfs
    msg "Remounting rootfs read-only...\n"
    mount -o remount,ro /
fi

sync