rc revision 175676
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 175676 2008-01-26 11:22:12Z mtm $
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
53114492Sdougbif [ "$1" = autoboot ]; then
54114492Sdougb	autoboot=yes
55114492Sdougb	_boot="faststart"
56114492Sdougb	rc_fast=yes        # run_rc_command(): do fast booting
57108200Sdillonelse
58114492Sdougb	autoboot=no
59175676Smtm	_boot="quietstart"
6098189Sgordonfi
6198189Sgordon
62145693Sbrooksdlv=`/sbin/sysctl -n vfs.nfs.diskless_valid 2> /dev/null`
63145693Sbrooksif [ ${dlv:=0} -ne 0 -o -f /etc/diskless ]; then
64145693Sbrooks	sh /etc/rc.initdiskless
65145693Sbrooksfi
66145693Sbrooks
67153298Sdougb# Run these after determining whether we are booting diskless in order
68153298Sdougb# to minimize the number of files that are needed on a diskless system,
69153298Sdougb# and to make the configuration file variables available to rc itself.
70153298Sdougb#
71153298Sdougb. /etc/rc.subr
72153298Sdougbecho "Loading configuration files."
73153298Sdougbload_rc_config 'XXX'
74153298Sdougb
75126743Spjdskip="-s nostart"
76155866Sdougbif [ `/sbin/sysctl -n security.jail.jailed` -eq 1 ]; then
77155866Sdougb	skip="$skip -s nojail"
78168283Sdes	if [ "$early_late_divider" = "FILESYSTEMS" ]; then
79155866Sdougb		early_late_divider=NETWORKING
80155866Sdougb	fi
81155866Sdougbfi
82153027Sdougb
83153298Sdougb# Do a first pass to get everything up to $early_late_divider so that
84153027Sdougb# we can do a second pass that includes $local_startup directories
85153027Sdougb#
86136224Smtmfiles=`rcorder ${skip} /etc/rc.d/* 2>/dev/null`
8798189Sgordon
88114492Sdougbfor _rc_elem in ${files}; do
89114492Sdougb	run_rc_script ${_rc_elem} ${_boot}
90153027Sdougb
91153027Sdougb	case "$_rc_elem" in
92153298Sdougb	*/${early_late_divider})	break ;;
93153027Sdougb	esac
9488531Ssheldonhdone
9551231Ssheldonh
96153027Sdougbunset files local_rc
97153027Sdougb
98153027Sdougb# Now that disks are mounted, for each dir in $local_startup
99153027Sdougb# search for init scripts that use the new rc.d semantics.
100153027Sdougb#
101153027Sdougbcase ${local_startup} in
102153027Sdougb[Nn][Oo] | '') ;;
103153027Sdougb*)	find_local_scripts_new ;;
104153027Sdougbesac
105153027Sdougb
106153027Sdougbfiles=`rcorder ${skip} /etc/rc.d/* ${local_rc} 2>/dev/null`
107153027Sdougb_skip_early=1
108153027Sdougbfor _rc_elem in ${files}; do
109153027Sdougb	case "$_skip_early" in
110153027Sdougb	1)	case "$_rc_elem" in
111153298Sdougb		*/${early_late_divider})	_skip_early=0 ;;
112153027Sdougb		esac
113153027Sdougb		continue
114153027Sdougb		;;
115153027Sdougb	esac
116153027Sdougb
117153027Sdougb	run_rc_script ${_rc_elem} ${_boot}
118153027Sdougbdone
119153027Sdougb
12070109Sdougbecho ''
12137Srgrimesdate
12237Srgrimesexit 0
123