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