3 # $NetBSD: rc.shutdown,v 1.7 2001/11/19 03:19:28 lukem Exp $
6 # Run the scripts in /etc/rc.d with reverse rcorder.
8 # System shutdown script run by shutdown(8) at system shutdown time.
9 # Note that halt(8) and reboot(8) do NOT invoke this script.
12 export PATH
=/sbin
:/bin
:/usr
/sbin
:/usr
/bin
17 if ! checkyesno do_rcshutdown
; then
18 echo "Skipping shutdown hooks."
24 # Set shell to ignore SIGINT, but not children;
25 # shell catches SIGQUIT and returns to single user.
28 trap "echo 'Shutdown interrupted.'; exit 1" QUIT
30 # If requested, start a watchdog timer in the background which
31 # will terminate rc.shutdown if rc.shutdown doesn't complete
32 # within the specified time.
35 if [ -n "$rcshutdown_timeout" ]; then
36 sleep $rcshutdown_timeout && (
37 _msg
="$rcshutdown_timeout second watchdog timeout expired. Shutdown terminated."
38 logger
-t rc.shutdown
"$_msg"
41 kill -KILL $$
>/dev
/null
2>&1
43 _rcshutdown_watchdog
=$
!
47 # Determine the shutdown order of the /etc/rc.d scripts,
48 # and perform the operation
50 files
=$
(rcorder
-k shutdown
${rcshutdown_rcorder_flags} /etc
/rc.d
/*)
52 for _rc_elem
in $
(reverse_list
$files); do
53 run_rc_script
$_rc_elem stop
57 # Terminate the background watchdog timer (if it is running)
59 if [ -n "$_rcshutdown_watchdog" ]; then
60 kill -TERM $_rcshutdown_watchdog >/dev
/null
2>&1