1998-10-09 17:11:14 +00:00
|
|
|
#!/bin/sh
|
2000-10-08 19:20:36 +00:00
|
|
|
#
|
2004-02-27 10:44:33 +00:00
|
|
|
# Copyright (c) 2000-2004 The FreeBSD Project
|
2000-10-08 19:20:36 +00:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
# SUCH DAMAGE.
|
|
|
|
#
|
2001-09-24 03:03:51 +00:00
|
|
|
# @(#)rc 5.27 (Berkeley) 6/5/91
|
1999-08-27 23:37:10 +00:00
|
|
|
# $FreeBSD$
|
2000-10-08 19:20:36 +00:00
|
|
|
#
|
1993-06-20 13:41:45 +00:00
|
|
|
|
|
|
|
# System startup script run by init on autoboot
|
|
|
|
# or after single-user.
|
|
|
|
# Output and error are redirected to console by init,
|
|
|
|
# and the console is the controlling terminal.
|
|
|
|
|
1999-09-13 15:44:20 +00:00
|
|
|
# Note that almost all of the user-configurable behavior is no longer in
|
|
|
|
# this file, but rather in /etc/defaults/rc.conf. Please check that file
|
|
|
|
# first before contemplating any changes here. If you do need to change
|
|
|
|
# this file for some reason, we would like to know about it.
|
1995-05-11 21:11:17 +00:00
|
|
|
|
1993-06-20 13:41:45 +00:00
|
|
|
stty status '^T'
|
|
|
|
|
|
|
|
# Set shell to ignore SIGINT (2), but not children;
|
2004-06-06 18:06:09 +00:00
|
|
|
# shell catches SIGQUIT (3) and returns to single user.
|
1999-09-13 15:44:20 +00:00
|
|
|
#
|
1993-06-20 13:41:45 +00:00
|
|
|
trap : 2
|
2004-06-06 18:06:09 +00:00
|
|
|
trap "echo 'Boot interrupted'; exit 1" 3
|
1993-06-20 13:41:45 +00:00
|
|
|
|
1999-09-13 15:44:20 +00:00
|
|
|
HOME=/
|
2002-03-16 20:01:25 +00:00
|
|
|
PATH=/sbin:/bin:/usr/sbin:/usr/bin
|
1999-09-13 15:44:20 +00:00
|
|
|
export HOME PATH
|
1993-06-20 13:41:45 +00:00
|
|
|
|
2003-05-02 05:27:35 +00:00
|
|
|
. /etc/rc.subr
|
1999-09-13 15:44:20 +00:00
|
|
|
|
2003-05-02 05:27:35 +00:00
|
|
|
# Note: the system configuration files are loaded as part of
|
2004-07-24 16:30:31 +00:00
|
|
|
# the RCNG system (rc.d/rcconf.sh). Do not load them here as it may
|
2003-05-02 05:27:35 +00:00
|
|
|
# interfere with diskless booting.
|
This is the rc work as provided by pts, I will me makeing some additional
changes to it based upon other outstanding bug reports and commits made
after his work.
Comments:
(a) sysconfig is still used to do all configuration. I was not going to
change that out from under you.... a user never need edit netstart
or rc* unless they're being very weird.
(b) rc.maint has been folded back into rc. It is just unworkable as
a separate chunk because of ordering bogosities
(c) netstart does what it says... it starts up enough of the network to
get up, it doesn't start every bloody daemon that might talk to a
socket... netstart ifconfig's the devices and sets up routing if
configured to do so.
(d) nfs disks are mounted immediately after netstart completes
(e) syslog is started as early as possible (right after nfs) so that error
messages can get logged to remote syslog servers properly
(f) named is started (there is an argument that says that named should be
started before syslogd because if you are the dns server for your domain,
you'd like named to resolve remote hosts in syslog.conf, but this is
a minority case and the trivial workarround is to put the syslog host
in /etc/hosts or use an /etc/resolv.conf -- why? because you want syslog
to catch named errors, which is a MUCH more important and likely occurance)
(g) NOW all of the rest of the network daemons such as the time stuff, RPC,
NIS, NFS, Kerberos and inetd are started
(h) the rest of the generic stuff is done (cron/printer/sendmail)
(i) shared libraries are set
(j) /etc/rc.i386 is run (this does FreeBSD/386 specific stuff like ibcs2,
xtend, and all of the syscons stuff
(this is actually started as /etc/rc.`uname -m`
(k) the syscons stuff has gotten a serious cleaning to make it consistent
with rc conventions
(l) rc.local has had the comments about syscons removed (they are not relevant
to this file now) and the full name of the kernel has been restored to
/etc/motd
Submitted by: pts
1995-03-30 06:26:19 +00:00
|
|
|
#
|
2003-05-02 05:27:35 +00:00
|
|
|
if [ "$1" = autoboot ]; then
|
|
|
|
autoboot=yes
|
|
|
|
_boot="faststart"
|
|
|
|
rc_fast=yes # run_rc_command(): do fast booting
|
2000-10-22 19:10:13 +00:00
|
|
|
else
|
2003-05-02 05:27:35 +00:00
|
|
|
autoboot=no
|
|
|
|
_boot="start"
|
2000-10-22 19:10:13 +00:00
|
|
|
fi
|
2000-10-12 21:40:04 +00:00
|
|
|
|
2005-04-29 23:02:56 +00:00
|
|
|
dlv=`/sbin/sysctl -n vfs.nfs.diskless_valid 2> /dev/null`
|
|
|
|
if [ ${dlv:=0} -ne 0 -o -f /etc/diskless ]; then
|
|
|
|
sh /etc/rc.initdiskless
|
|
|
|
fi
|
|
|
|
|
2004-03-08 12:02:07 +00:00
|
|
|
skip="-s nostart"
|
|
|
|
[ `/sbin/sysctl -n security.jail.jailed` -eq 1 ] && skip="$skip -s nojail"
|
2004-10-07 13:55:26 +00:00
|
|
|
files=`rcorder ${skip} /etc/rc.d/* 2>/dev/null`
|
1996-11-01 09:45:51 +00:00
|
|
|
|
2003-05-02 05:27:35 +00:00
|
|
|
for _rc_elem in ${files}; do
|
|
|
|
run_rc_script ${_rc_elem} ${_boot}
|
|
|
|
done
|
2001-05-11 07:40:39 +00:00
|
|
|
|
2000-12-17 08:24:49 +00:00
|
|
|
echo ''
|
1993-06-20 13:41:45 +00:00
|
|
|
date
|
|
|
|
exit 0
|