NetBSD/etc/rc

47 lines
921 B
Plaintext
Raw Normal View History

#!/bin/sh
#
2001-03-12 18:56:39 +03:00
# $NetBSD: rc,v 1.156 2001/03/12 15:56:39 lukem Exp $
#
# rc --
# Run the scripts in /etc/rc.d with rcorder.
1993-03-21 12:45:37 +03:00
# System startup script run by init(8) on autoboot or after single-user.
# 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=/
export PATH=/sbin:/bin:/usr/sbin:/usr/bin
. /etc/rc.subr
. /etc/rc.conf
_rc_conf_loaded=YES
if ! checkyesno rc_configured; then
echo "/etc/rc.conf is not configured. Multiuser boot aborted."
exit 1
fi
if [ "$1" = autoboot ]; then
autoboot=yes
_rc_fast_run=yes # run_rc_command(): do fast booting
fi
stty status '^T'
1993-03-21 12:45:37 +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
date
2001-03-12 18:56:39 +03:00
files=`rcorder -s nostart /etc/rc.d/*`
for _rc_elem in $files; do
run_rc_script $_rc_elem start
done
1993-03-21 12:45:37 +03:00
date
exit 0