rc.shutdown revision 53550
1#!/bin/sh
2# $FreeBSD: head/etc/rc.shutdown 53550 1999-11-22 04:23:11Z dillon $
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=/
17PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin
18export HOME PATH
19
20# Check if /var/db/mounttab is clean.
21case $1 in
22reboot)
23	if [ -f /var/db/mounttab ]; then
24		rpc.umntall
25	fi
26	;;
27esac
28
29echo -n "Shutting down daemon processes: "
30
31# Insert shutdown procedures here
32
33
34echo '.'
35exit 0
36