Initial import from FreeBSD RELENG_4:
[games.git] / etc / rc.shutdown
1 #!/bin/sh
2 #
3 # Copyright (c) 1997  Ollivier Robert
4 # All rights reserved.
5 #
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions
8 # are met:
9 # 1. Redistributions of source code must retain the above copyright
10 #    notice, this list of conditions and the following disclaimer.
11 # 2. Redistributions in binary form must reproduce the above copyright
12 #    notice, this list of conditions and the following disclaimer in the
13 #    documentation and/or other materials provided with the distribution.
14 #
15 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 # ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 # SUCH DAMAGE.
26 #
27 # $FreeBSD: src/etc/rc.shutdown,v 1.4.2.13 2001/12/19 14:40:28 roam Exp $
28 #
29
30 # Site-specific closing actions for daemons run by init on shutdown,
31 # or before going single-user from multi-user.
32 # Output and errors are directed to console by init, and the
33 # console is the controlling terminal.
34
35 stty status '^T'
36
37 # Set shell to ignore SIGINT (2), but not children;
38 # shell catches SIGQUIT (3) and returns to single user after fsck.
39 trap : 2
40 trap : 3        # shouldn't be needed
41
42 HOME=/
43 PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin
44 export HOME PATH
45
46 # If there is a global system configuration file, suck it in.
47 #
48 if [ -r /etc/defaults/rc.conf ]; then
49         . /etc/defaults/rc.conf
50         source_rc_confs
51 elif [ -r /etc/rc.conf ]; then
52         . /etc/rc.conf
53 fi
54
55 # Check if /var/db/mounttab is clean.
56 case $1 in
57 reboot)
58         if [ -f /var/db/mounttab ]; then
59                 rpc.umntall
60         fi
61         ;;
62 esac
63
64 echo -n 'Shutting down daemon processes:'
65
66 # for each valid dir in $local_startup, search for init scripts matching *.sh
67 case ${local_startup} in
68 [Nn][Oo] | '')
69         ;;
70 *)
71         slist=""
72         if [ -z "${script_name_sep}" ]; then
73                 script_name_sep=" "
74         fi
75         for dir in ${local_startup}; do
76                 if [ -d "${dir}" ]; then
77                         for script in ${dir}/*.sh; do
78                                 slist="${script}${script_name_sep}${slist}"
79                         done
80                 fi
81         done
82         script_save_sep="$IFS"
83         IFS="${script_name_sep}"
84         for script in ${slist}; do
85                 if [ -x "${script}" ]; then
86                         (set -T
87                         trap 'exit 1' 2
88                         ${script} stop)
89                 fi
90         done
91         IFS="${script_save_sep}"
92         echo '.'
93         ;;
94 esac
95
96 # Insert other shutdown procedures here
97
98 # Saving firewall state tables should be done last
99 echo -n 'Saving firewall state tables:'
100
101 # Save IP-filter state tables
102 case ${ipfs_enable} in
103 [Yy][Ee][Ss])
104         echo -n ' ipfs'
105         ${ipfs_program:-/sbin/ipfs} -W ${ipfs_flags}
106         ;;
107 esac
108
109 echo '.'
110 exit 0