2000-03-10 16:15:58 +03:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2000-12-15 03:00:09 +03:00
|
|
|
# $NetBSD: rc,v 1.154 2000/12/15 00:00:09 lukem Exp $
|
2000-03-10 16:15:58 +03:00
|
|
|
#
|
2000-12-15 03:00:09 +03:00
|
|
|
# rc --
|
2000-03-10 16:15:58 +03:00
|
|
|
# Run the scripts in /etc/rc.d with rcorder.
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2000-12-15 03:00:09 +03:00
|
|
|
# System startup script run by init(8) on autoboot or after single-user.
|
2000-03-10 16:15:58 +03:00
|
|
|
# Output and error are redirected to console by init, and the console
|
|
|
|
# is the controlling terminal.
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1997-03-10 12:34:59 +03:00
|
|
|
export HOME=/
|
2000-03-10 16:15:58 +03:00
|
|
|
export PATH=/sbin:/bin:/usr/sbin:/usr/bin
|
1999-10-05 14:32:56 +04:00
|
|
|
|
2000-03-10 16:15:58 +03:00
|
|
|
. /etc/rc.subr
|
|
|
|
. /etc/rc.conf
|
1997-03-10 12:16:13 +03:00
|
|
|
|
2000-03-29 06:13:51 +04:00
|
|
|
if ! checkyesno rc_configured; then
|
|
|
|
echo "/etc/rc.conf is not configured. Multiuser boot aborted."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2000-03-10 16:15:58 +03:00
|
|
|
if [ "$1" = autoboot ]; then
|
|
|
|
autoboot=yes
|
|
|
|
_rc_fast_run=yes # run_rc_command(): do fast booting
|
1999-07-03 07:29:29 +04:00
|
|
|
fi
|
|
|
|
|
2000-03-10 16:15:58 +03:00
|
|
|
stty status '^T'
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2000-03-10 16:15:58 +03:00
|
|
|
# Set shell to ignore SIGINT (2), but not children;
|
|
|
|
# shell catches SIGQUIT (3) and returns to single user.
|
|
|
|
#
|
|
|
|
trap : 2
|
|
|
|
trap "echo 'Boot interrupted.'; exit 1" 3
|
1997-04-19 07:10:57 +04:00
|
|
|
|
2000-08-22 03:09:50 +04:00
|
|
|
files=`rcorder -s nostart /etc/rc.d/*`
|
1999-03-26 16:45:47 +03:00
|
|
|
|
2000-03-10 16:15:58 +03:00
|
|
|
for i in $files; do
|
2000-04-22 07:01:22 +04:00
|
|
|
run_rc_script $i start
|
2000-03-10 16:15:58 +03:00
|
|
|
done
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
date
|
|
|
|
exit 0
|