]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - etc/rc.shutdown
This commit was generated by cvs2svn to compensate for changes in r39330,
[FreeBSD/FreeBSD.git] / etc / rc.shutdown
1 #!/bin/sh
2 #       $Id$
3
4 # site-specific closing actions for daemons run by init on shutdown
5 # or before going single-user from multi-user.
6 # Output and errors are directed to console by init, and the
7 # console is the controlling terminal.
8
9 stty status '^T'
10
11 # Set shell to ignore SIGINT (2), but not children;
12 # shell catches SIGQUIT (3) and returns to single user after fsck.
13 trap : 2
14 trap : 3        # shouldn't be needed
15
16 HOME=/; export HOME
17 PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin
18 export PATH
19
20 echo -n Shutting down daemon processes: 
21
22 # Insert shutdown procedures here
23
24
25 echo '.'
26 exit 0