rc revision 153027
140123Sdes#!/bin/sh
266830Sobrien#
3126310Smtm# Copyright (c) 2000-2004  The FreeBSD Project
466830Sobrien# All rights reserved.
566830Sobrien#
666830Sobrien# Redistribution and use in source and binary forms, with or without
766830Sobrien# modification, are permitted provided that the following conditions
866830Sobrien# are met:
966830Sobrien# 1. Redistributions of source code must retain the above copyright
1066830Sobrien#    notice, this list of conditions and the following disclaimer.
1166830Sobrien# 2. Redistributions in binary form must reproduce the above copyright
1266830Sobrien#    notice, this list of conditions and the following disclaimer in the
1366830Sobrien#    documentation and/or other materials provided with the distribution.
1466830Sobrien#
1566830Sobrien# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1666830Sobrien# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1766830Sobrien# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1866830Sobrien# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1966830Sobrien# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2066830Sobrien# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2166830Sobrien# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2266830Sobrien# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2366830Sobrien# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2466830Sobrien# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2566830Sobrien# SUCH DAMAGE.
2666830Sobrien#
2783871Sobrien#	@(#)rc	5.27 (Berkeley) 6/5/91
2850472Speter# $FreeBSD: head/etc/rc 153027 2005-12-02 20:06:07Z dougb $
2966830Sobrien#
3037Srgrimes
3137Srgrimes# System startup script run by init on autoboot
3237Srgrimes# or after single-user.
3337Srgrimes# Output and error are redirected to console by init,
3437Srgrimes# and the console is the controlling terminal.
3537Srgrimes
3651231Ssheldonh# Note that almost all of the user-configurable behavior is no longer in
3751231Ssheldonh# this file, but rather in /etc/defaults/rc.conf.  Please check that file
3851231Ssheldonh# first before contemplating any changes here.  If you do need to change
3951231Ssheldonh# this file for some reason, we would like to know about it.
408460Sjkh
4137Srgrimesstty status '^T'
4237Srgrimes
4337Srgrimes# Set shell to ignore SIGINT (2), but not children;
44130161Smtm# shell catches SIGQUIT (3) and returns to single user.
4551231Ssheldonh#
4637Srgrimestrap : 2
47130161Smtmtrap "echo 'Boot interrupted'; exit 1" 3
4837Srgrimes
4951231SsheldonhHOME=/
5092441ScjcPATH=/sbin:/bin:/usr/sbin:/usr/bin
5151231Ssheldonhexport HOME PATH
5237Srgrimes
53114492Sdougb. /etc/rc.subr
54114492Sdougb
55114492Sdougb# Note: the system configuration files are loaded as part of
56153027Sdougb# the rc.d system (rc.d/rcconf.sh).  Do not load them here as it may
57114492Sdougb# interfere with diskless booting.
5898189Sgordon#
59114492Sdougbif [ "$1" = autoboot ]; then
60114492Sdougb	autoboot=yes
61114492Sdougb	_boot="faststart"
62114492Sdougb	rc_fast=yes        # run_rc_command(): do fast booting
63108200Sdillonelse
64114492Sdougb	autoboot=no
65114492Sdougb	_boot="start"
6698189Sgordonfi
6798189Sgordon
68145693Sbrooksdlv=`/sbin/sysctl -n vfs.nfs.diskless_valid 2> /dev/null`
69145693Sbrooksif [ ${dlv:=0} -ne 0 -o -f /etc/diskless ]; then
70145693Sbrooks	sh /etc/rc.initdiskless
71145693Sbrooksfi
72145693Sbrooks
73126743Spjdskip="-s nostart"
74126743Spjd[ `/sbin/sysctl -n security.jail.jailed` -eq 1 ] && skip="$skip -s nojail"
75153027Sdougb
76153027Sdougb# Do a first pass to get everything up to mountcritremote so that
77153027Sdougb# we can do a second pass that includes $local_startup directories
78153027Sdougb#
79136224Smtmfiles=`rcorder ${skip} /etc/rc.d/* 2>/dev/null`
8098189Sgordon
81114492Sdougbfor _rc_elem in ${files}; do
82114492Sdougb	run_rc_script ${_rc_elem} ${_boot}
83153027Sdougb
84153027Sdougb	case "$_rc_elem" in
85153027Sdougb	*/mountcritremote)	break ;;
86153027Sdougb	esac
8788531Ssheldonhdone
8851231Ssheldonh
89153027Sdougbunset files local_rc
90153027Sdougb
91153027Sdougb# Now that disks are mounted, for each dir in $local_startup
92153027Sdougb# search for init scripts that use the new rc.d semantics.
93153027Sdougb#
94153027Sdougbcase ${local_startup} in
95153027Sdougb[Nn][Oo] | '') ;;
96153027Sdougb*)	find_local_scripts_new ;;
97153027Sdougbesac
98153027Sdougb
99153027Sdougbfiles=`rcorder ${skip} /etc/rc.d/* ${local_rc} 2>/dev/null`
100153027Sdougb_skip_early=1
101153027Sdougbfor _rc_elem in ${files}; do
102153027Sdougb	case "$_skip_early" in
103153027Sdougb	1)	case "$_rc_elem" in
104153027Sdougb		*/mountcritremote)	_skip_early=0 ;;
105153027Sdougb		esac
106153027Sdougb		continue
107153027Sdougb		;;
108153027Sdougb	esac
109153027Sdougb
110153027Sdougb	run_rc_script ${_rc_elem} ${_boot}
111153027Sdougbdone
112153027Sdougb
11370109Sdougbecho ''
11437Srgrimesdate
11537Srgrimesexit 0
116