rc revision 1.152.4.1
1#!/bin/sh
2#
3# $NetBSD: rc,v 1.152.4.1 2000/08/23 12:05:17 lukem Exp $
4#
5# rc.sh --
6#	Run the scripts in /etc/rc.d with rcorder.
7
8#	System startup script run by init on autoboot or after single-user.
9#	Output and error are redirected to console by init, and the console
10#	is the controlling terminal.
11
12export HOME=/
13export PATH=/sbin:/bin:/usr/sbin:/usr/bin
14
15. /etc/rc.subr
16. /etc/rc.conf
17
18if ! checkyesno rc_configured; then
19	echo "/etc/rc.conf is not configured.  Multiuser boot aborted."
20	exit 1
21fi
22
23if [ "$1" = autoboot ]; then
24	autoboot=yes
25	_rc_fast_run=yes	# run_rc_command(): do fast booting
26fi
27
28stty status '^T'
29
30#	Set shell to ignore SIGINT (2), but not children;
31#	shell catches SIGQUIT (3) and returns to single user.
32#
33trap : 2
34trap "echo 'Boot interrupted.'; exit 1" 3
35
36files=`rcorder -s nostart /etc/rc.d/*`
37
38for i in $files; do
39	run_rc_script $i start
40done
41
42date
43exit 0
44