Deleted Added
full compact
rc (43803) rc (43849)
1#!/bin/sh
1#!/bin/sh
2# $Id: rc,v 1.176 1999/02/09 05:20:46 dillon Exp $
2# $Id: rc,v 1.177 1999/02/09 17:17:18 dillon Exp $
3# From: @(#)rc 5.27 (Berkeley) 6/5/91
4
5# System startup script run by init on autoboot
6# or after single-user.
7# Output and error are redirected to console by init,
8# and the console is the controlling terminal.
9
10# Note that almost all the user-configurable behavior is no longer in

--- 18 unchanged lines hidden (view full) ---

29 dlv=`/sbin/sysctl -n vfs.nfs.diskless_valid 2> /dev/null`
30 if [ ${dlv:=0} != 0 ]; then
31 . /etc/rc.diskless1
32 fi
33fi
34
35# If there is a global system configuration file, suck it in.
36#
3# From: @(#)rc 5.27 (Berkeley) 6/5/91
4
5# System startup script run by init on autoboot
6# or after single-user.
7# Output and error are redirected to console by init,
8# and the console is the controlling terminal.
9
10# Note that almost all the user-configurable behavior is no longer in

--- 18 unchanged lines hidden (view full) ---

29 dlv=`/sbin/sysctl -n vfs.nfs.diskless_valid 2> /dev/null`
30 if [ ${dlv:=0} != 0 ]; then
31 . /etc/rc.diskless1
32 fi
33fi
34
35# If there is a global system configuration file, suck it in.
36#
37if [ -f /etc/rc.conf ]; then
37if [ -f /etc/defaults/rc.conf ]; then
38 . /etc/defaults/rc.conf
39elif [ -f /etc/rc.conf ]; then
38 . /etc/rc.conf
39fi
40
41# Configure ccd devices.
42if [ -f /etc/ccd.conf ]; then
43 ccdconfig -C
44fi
45

--- 390 unchanged lines hidden ---
40 . /etc/rc.conf
41fi
42
43# Configure ccd devices.
44if [ -f /etc/ccd.conf ]; then
45 ccdconfig -C
46fi
47

--- 390 unchanged lines hidden ---