rc.shutdown revision 27837
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
9stty 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.
13trap : 2
14trap : 3	# shouldn't be needed
15
16HOME=/; export HOME
17PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin
18export PATH
19
20echo -n Shutting down daemon processes: 
21
22# Insert shutdown procedures here
23
24
25echo '.'
26exit 0
27