]> git.pld-linux.org Git - projects/rc-scripts.git/blame - rc.d/rc.shutdown
Add (commented out) vm.oom_kill_allocating_task sysctl knob
[projects/rc-scripts.git] / rc.d / rc.shutdown
CommitLineData
791f7cd2
JR
1#!/bin/sh
2#
af55fe6b 3# shutdown Common script for system halt/reboot.
791f7cd2 4#
5e6dfc29 5# Author: Miquel van Smoorenburg, <miquels@drinkel.nl.mugnet.org>
791f7cd2 6#
791f7cd2
JR
7
8# Set the path.
9PATH=/sbin:/bin:/usr/bin:/usr/sbin
10
de160ea3
AM
11# move to root dir
12cd /
13
d84e0c78
JR
14IN_SHUTDOWN=yes
15
791f7cd2
JR
16. /etc/rc.d/init.d/functions
17
b6509675
AM
18# avoid keyboard interruption
19trap "echo" INT SEGV QUIT TERM
20set +e
21
22rc_splash "reboot"
23
791f7cd2
JR
24# Kill all processes.
25[ "${BASH+bash}" = bash ] && enable kill
26
d0f42664 27runlevel=$1
cc10e704 28previous=$2
d0f42664 29
0868c9a6 30# Stop blogd before umounting /var
b171122f
ER
31if [ -x /sbin/blogd ]; then
32 killall -q -QUIT blogd
0868c9a6
ER
33fi
34
cf360554
ER
35if [ -e /dev/rtc -o -e /dev/rtc0 ]; then
36 run_cmd "$(nls 'Syncing hardware clock to system time')" hwclock --systohc
37fi
38
74c57003
AM
39# check for other processes.
40# there could be none if all services were terminated properly
41# pgrep -g 0 requires procps >= 3.2.6-1.1
bcff88d5 42# XXX: pgrep is on /usr!
74c57003 43pids=$(pgrep -g 0 -l -v | grep -v '^1 ')
bcff88d5 44if [ -n "$pids" ] || [ ! -x /usr/bin/pgrep ]; then
74c57003
AM
45 run_cmd "Sending all processes the TERM signal" killall5 -15
46fi
47
48pids=$(pgrep -g 0 -l -v | grep -v '^1 ')
bcff88d5 49if [ -n "$pids" ] || [ ! -x /usr/bin/pgrep ]; then
74c57003
AM
50 sleep 5
51 run_cmd "Sending all processes the KILL signal" killall5 -9
52fi
791f7cd2
JR
53
54# Write to wtmp file before unmounting /var
1822a5a6 55halt -w
791f7cd2 56
1aaf8c92
JR
57if ! is_yes "$VSERVER"; then
58 # Turn off swap, then unmount file systems.
59 run_cmd "Turning off swap" swapoff -a
7d7fd6c1 60
1aaf8c92 61 [ -x /etc/rc.d/rc.acct ] && /etc/rc.d/rc.acct stop
791f7cd2 62
1aaf8c92
JR
63 if [ -x /sbin/quotaoff ]; then
64 run_cmd "Turning off quotas for local filesystems" /sbin/quotaoff -a
65 fi
2eec3807 66
6b30816c
ER
67 # grab kexec_loaded state before we umount /sys
68 kexec_loaded=`cat /sys/kernel/kexec_loaded 2>/dev/null`
69
cc10e704
JR
70 # Unmount file systems, killing processes if we have to.
71 sig=-15
72 retry=3
73 force=
4cc198ff
JR
74 if [ -z "$UMOUNT_IGNORE" ]; then
75 UMOUNT_IGNORE="/"
df82ecd4 76 else
4cc198ff 77 UMOUNT_IGNORE="/ $UMOUNT_IGNORE"
df82ecd4 78 fi
4cc198ff 79 remaining=$(awk -v ig="^($UMOUNT_IGNORE)$" 'BEGIN { gsub(/[\t ]+/, "|", ig); } \
a0bbd9e1 80 $3 !~ /^(proc|loopfs|devpts|devtmpfs|shm|iso9660|ramfs|tmpfs|sysfs|securityfs|squashfs)$/ \
2850ca3d 81 && $1 !~ /^(none|\/dev\/root)$/ \
4cc198ff 82 && $2 !~ ig {print $2}' /proc/mounts)
2a57d1ce
ER
83 while [ -n "$remaining" -a "$retry" -gt 0 ]; do
84 show "Unmounting file systems"; busy
0de30f3c 85 ERRORS=$(umount -a $force -t noproc,nosysfs 2>&1); rc=$?
2a57d1ce
ER
86
87 # we might had unmounted /usr, recheck $TPUT availability
88 # but well. we need tput only for show() and busy() (ok() and fail() messages are already cached)
89 # TODO: look ahead the messages?
90 if is_yes "$TPUT"; then
91 TPUT=
92 rc_gettext_init
93 fi
94
95 if [ $rc = 0 ]; then
cc10e704
JR
96 ok
97 else
98 fail
99 [ -n "$ERRORS" ] && echo "$ERRORS"
100 fi
5e6dfc29 101
cc10e704 102 sleep 2
4cc198ff 103 remaining=$(awk -v ig="^($UMOUNT_IGNORE)$" 'BEGIN { gsub(/[\t ]+/, "|", ig); } \
a0bbd9e1 104 $3 !~ /^(proc|loopfs|devpts|devtmpfs|shm|iso9660|ramfs|tmpfs|sysfs|securityfs|squashfs)$/ \
2850ca3d 105 && $1 !~ /^(none|\/dev\/root)$/ \
4cc198ff 106 && $2 !~ ig {print $2}' /proc/mounts)
cc10e704 107 [ -z "$remaining" ] && break
4b0d64e2 108 fuser -k -m $sig $remaining > /dev/null
cc10e704
JR
109 sleep 5
110 retry=$(($retry-1))
111 sig=-9
112 force="-f"
113 done
114
115 run_cmd "Remounting root filesystem in ro mode" mount -n -o remount,ro /
116
9bec7e9f 117 if [ -x /sbin/vgchange ]; then
0174ae89 118 lvmversion=$(LC_ALL=C /sbin/vgchange --version 2>/dev/null | awk '/LVM version:/{if ($3 >= 2) print "2"}')
9bec7e9f 119 if [ "$lvmversion" = "2" ]; then
6371a9cf 120 lvmsysinit="--sysinit --noudevsync"
cc10e704 121 else
ffa93fa2 122 lvmsysinit=""
cc10e704 123 fi
ffa93fa2 124 /sbin/vgchange -a n $lvmsysinit > /dev/null 2>&1
41781ded 125 fi
41781ded 126
cc10e704 127 if [ -x /sbin/mdadm -a -f /etc/mdadm.conf ]; then
62119804 128 if grep -qE "^([[:blank:]]|)ARRAY[[:blank:]]" /etc/mdadm.conf 2>/dev/null; then
9045fdf6 129 /sbin/mdadm --stop --scan > /dev/null 2>&1
5e6dfc29 130 rc=$?
cc10e704 131 fi
8fb3abd8 132 fi
5e6dfc29 133
cc10e704 134 show "Remounting remaining filesystems ro mode"; busy
62119804 135 if mount | awk '/ext2|ext3|reiserfs|xfs|jfs/ { print $3 }' | while read line; do mount -n -o ro,remount $line; done; then
cc10e704
JR
136 ok
137 else
138 fail
139 fi
2e33f3ce
JR
140 _rebootwhat="system"
141else
142 _rebootwhat="vserver"
143fi
144
6b496866 145if [ -f /etc/crypttab ] && ! is_empty_file /etc/crypttab; then
8710c4b5
ER
146 . /etc/rc.d/init.d/cryptsetup
147
148 show "Stopping disk encryption"
878e1414
ER
149 halt_crypto && ok || fail
150fi
151
d0f42664 152if [ "$runlevel" = "0" ] ; then
2e33f3ce 153 show "The $_rebootwhat is halted"; ok
62119804
ER
154 if [ -f /fastboot ]; then
155 show "On the next boot fsck will be skipped."; ok
156 fi
bc451b91 157
d0b6372d 158 if [ -f /etc/killpower -a -f /etc/sysconfig/ups ] ; then
5e6dfc29 159 . /etc/sysconfig/ups
d0b6372d
AM
160 if is_yes "$POWEROFF_UPS"; then
161 if [ -d /etc/ups.d ]; then
03ef5439 162 for i in /etc/ups.d/*.sh; do
d0b6372d
AM
163 [ ! -f $i -o ! -x $i ] && continue
164 $i poweroff
165 done
166 fi
167 [ -x /sbin/poweroff-ups ] && /sbin/poweroff-ups
168 fi
cc10e704 169 fi
554bf775 170 [ "$previous" != "unknown" ] && halt -d -p -f
d0f42664 171else
2e33f3ce 172 show "Please stand by while rebooting the $_rebootwhat"; ok
62119804
ER
173 if [ -f /fastboot ]; then
174 show "On the next boot fsck will be skipped."; ok
175 fi
69d7c00f 176
6b30816c
ER
177 if [ -x /sbin/kexec ] && [ "$kexec_loaded" = "1" ]; then
178 show "Will now restart with kexec"
69d7c00f 179 /sbin/kexec -e
6b30816c 180 fail
69d7c00f
ER
181 fi
182
554bf775 183 [ "$previous" != "unknown" ] && reboot -d -f
d0f42664 184fi
This page took 0.400368 seconds and 4 git commands to generate.