rc revision 38837
1158787Sume#!/bin/sh
2158787Sume#	$Id: rc,v 1.151 1998/08/24 07:11:48 gpalmer Exp $
3158787Sume#	From: @(#)rc	5.27 (Berkeley) 6/5/91
4157308Sume
5158787Sume# System startup script run by init on autoboot
6158787Sume# or after single-user.
7158787Sume# Output and error are redirected to console by init,
8157308Sume# and the console is the controlling terminal.
9158787Sume
10158787Sume# Note that almost all the user-configurable behavior is no longer in
11158787Sume# this file, but rather in /etc/rc.conf.  Please check this file
12158787Sume# first before contemplating any changes here.
13158787Sume
14158787Sumestty status '^T'
15158787Sume
16157308Sume# Set shell to ignore SIGINT (2), but not children;
17157308Sume# shell catches SIGQUIT (3) and returns to single user after fsck.
18158787Sumetrap : 2
19170244Sumetrap : 3	# shouldn't be needed
20158787Sume
21158787SumeHOME=/; export HOME
22157308SumePATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin
23158787Sumeexport PATH
24158787Sume
25157308Sume# Configure ccd devices.
26170244Sumeif [ -f /etc/ccd.conf ]; then
27170244Sume	ccdconfig -C
28158787Sumefi
29158787Sume
30158787Sumeswapon -a
31158787Sume
32170244Sumeif [ $1x = autobootx ]; then
33157308Sume	echo Automatic reboot in progress...
34157308Sume	fsck -p
35157308Sume	case $? in
36158787Sume	0)
37158787Sume		;;
38158787Sume	2)
39158787Sume		exit 1
40170244Sume		;;
41170244Sume	4)
42170244Sume		reboot
43170244Sume		echo "reboot failed... help!"
44170244Sume		exit 1
45170244Sume		;;
46170244Sume	8)
47170244Sume		echo "Automatic file system check failed... help!"
48157308Sume		exit 1
49170244Sume		;;
50170244Sume	12)
51170244Sume		echo "Reboot interrupted"
52157308Sume		exit 1
53157308Sume		;;
54158787Sume	130)
55158787Sume		# interrupt before catcher installed
56158787Sume		exit 1
57158787Sume		;;
58157308Sume	*)
59158787Sume		echo "Unknown error in reboot"
60158787Sume		exit 1
61158787Sume		;;
62158787Sume	esac
63158787Sumeelse
64158787Sume	echo Skipping disk checks ...
65157308Sumefi
66157308Sume
67158787Sumetrap "echo 'Reboot interrupted'; exit 1" 3
68157308Sume
69158787Sume# root must be read/write both for NFS diskless and for VFS LKMs before
70157308Sume# proceeding any further.
71157308Sumemount -u -o rw /
72157308Sumeif [ $? != 0 ]; then
73158787Sume	echo "Filesystem mount failed, startup aborted"
74170244Sume	exit 1
75170244Sumefi
76
77umount -a >/dev/null 2>&1
78
79mount -a -t nonfs
80if [ $? != 0 ]; then
81	echo "Filesystem mount failed, startup aborted"
82	exit 1
83fi
84
85# If there is a global system configuration file, suck it in.
86if [ -f /etc/rc.conf ]; then
87    . /etc/rc.conf
88fi
89
90# If old file exists, whine until they fix it.
91if [ -f /etc/sysconfig ]; then
92	echo "Warning: /etc/sysconfig has been replaced by /etc/rc.conf."
93	echo "You should switch to /etc/rc.conf ASAP to eliminate this warning."
94fi
95
96adjkerntz -i
97
98clean_var() {
99  if [ ! -f /var/run/clean_var ]; then
100    rm -rf /var/run/*
101    rm -f /var/spool/lock/*
102    rm -rf /var/spool/uucp/.Temp/*
103    # Keep a copy of the boot messages around
104    dmesg >/var/run/dmesg.boot
105    # And an initial utmp file
106    (cd /var/run && cp /dev/null utmp && chmod 644 utmp; )
107    touch /var/run/clean_var
108  fi
109}
110
111if [ -d /var/run -a -d /var/spool/lock -a -d /var/spool/uucp/.Temp ]; then
112  # network_pass1() *may* end up writing stuff to /var - we don't want to
113  # remove it immediately afterwards - *nor* to we want to fail to clean
114  # an nfs-mounted /var.
115  clean_var
116fi
117
118# Add additional swapfile, if configured.
119if [ "x$swapfile" != "xNO" -a -w "$swapfile" -a -b /dev/vn0b ]; then
120	echo "Adding $swapfile as additional swap."
121	vnconfig /dev/vn0b $swapfile && swapon /dev/vn0b
122fi
123
124# configure serial devices
125if [ -f /etc/rc.serial ]; then
126	. /etc/rc.serial
127fi
128
129# start up PC-card configuration
130if [ -f /etc/rc.pccard ]; then
131	. /etc/rc.pccard
132fi
133
134# start up the initial network configuration.
135if [ -f /etc/rc.network ]; then
136	. /etc/rc.network	# We only need to do this once.
137	network_pass1
138fi
139
140echo -n "Mounting NFS file systems"
141mount -a -t nfs
142echo .
143
144# Whack the pty perms back into shape.
145chmod 666 /dev/tty[pqrsPQRS]*
146
147# clean up left-over files
148rm -f /etc/nologin
149
150clean_var			# If it hasn't already been done
151rm /var/run/clean_var
152
153#
154# Clearing /tmp at boot-time seems to have a long tradition.  It doesn't
155# help in any way for long-living systems, and it might accidentally
156# clobber files you would rather like to have preserved after a crash
157# (if not using mfs /tmp anyway).
158#
159# See also the example of another cleanup policy in /etc/periodic/daily.
160#
161if [ "X${clear_tmp_enable}" = X"YES" ]; then
162	echo clearing /tmp
163
164	# prune quickly with one rm, then use find to clean up /tmp/[lq]*
165	# (not needed with mfs /tmp, but doesn't hurt there...)
166	(cd /tmp && rm -rf [a-km-pr-zA-Z]* &&
167	    find -d . ! -name . ! -name lost+found ! -name quotas -exec rm -rf -- {} \;)
168
169	# Also remove X lock files since it will prevent you from
170	# restarting X11 after a system crash.
171	rm -f /tmp/.X*-lock /tmp/.X11-unix/*
172fi
173
174# snapshot any kernel -c changes back to disk
175echo 'recording kernel -c changes'
176dset -q
177
178echo -n 'additional daemons:'
179# start system logging and name service (named needs to start before syslogd
180# if you don't have a /etc/resolv.conf)
181#
182if [ "X${syslogd_enable}" = X"YES" ]; then
183	# Transitional symlink (for the next couple of years :) until all
184	# binaries had a chance to move towards /var/run/log.
185	if [ ! -h /dev/log ] ; then
186		# might complain for r/o root f/s
187		ln -sf /var/run/log /dev/log
188	fi
189
190	rm -f /var/run/log
191	echo -n ' syslogd';		syslogd ${syslogd_flags}
192fi
193
194if [ "X${tickadj_enable}" = X"YES" ]; then
195	echo -n ' tickadj';	tickadj ${tickadj_flags--Aq}
196fi
197echo '.'
198
199# enable dumpdev so that savecore can see it
200# /var/crash should be a directory or a symbolic link
201# to the crash directory if core dumps are to be saved.
202if [ "X${dumpdev}" != X"NO" -a -e ${dumpdev} -a -d /var/crash ]; then
203	dumpon ${dumpdev}
204	echo -n checking for core dump...
205	savecore /var/crash
206fi
207
208if [ -n "$network_pass1_done" ]; then
209    network_pass2
210fi
211
212# Check the quotas (must be after ypbind if using NIS)
213if [ "X${check_quotas}" = X"YES" ]; then
214	echo -n 'checking quotas:'
215	quotacheck -a
216	echo ' done.'
217	quotaon -a
218fi
219
220if [ -n "$network_pass2_done" ]; then
221    network_pass3
222fi
223
224
225# build ps databases
226kvm_mkdb 
227dev_mkdb
228
229# check the password temp/lock file
230if [ -f /etc/ptmp ]
231then
232	logger -s -p auth.err \
233	"password file may be incorrect -- /etc/ptmp exists"
234fi
235
236if [ "X${accounting_enable}" = X"YES" -a -d /var/account ]; then
237	echo 'turning on accounting'
238	if [ ! -e /var/account/acct ]; then
239		touch /var/account/acct
240	fi
241	accton /var/account/acct
242fi
243
244# Make shared lib searching a little faster.  Leave /usr/lib first if you
245# add your own entries or you may come to grief.
246if [ -x /sbin/ldconfig ]; then
247	_LDC=/usr/lib/aout
248	for i in $ldconfig_paths; do
249		if test -d $i; then
250			_LDC="${_LDC} $i"
251		fi
252	done
253	echo 'setting a.out ldconfig path:' ${_LDC}
254	ldconfig -aout ${_LDC}
255fi
256
257# Now start up miscellaneous daemons that don't belong anywhere else
258#
259echo -n starting standard daemons:
260if [ "X${inetd_enable}" != X"NO" ]; then
261	echo -n ' inetd';	inetd ${inetd_flags}
262fi
263
264if [ "X${cron_enable}" != X"NO" ]; then
265	echo -n ' cron';	cron
266fi
267
268if [ "X${lpd_enable}" = X"YES" ]; then
269	echo -n ' printer';		lpd ${lpd_flags}
270fi
271
272if [ "X${sendmail_enable}" = X"YES" -a -r /etc/sendmail.cf ]; then
273	echo -n ' sendmail';	/usr/sbin/sendmail ${sendmail_flags}
274fi
275
276echo '.'
277
278# configure implementation specific stuff
279arch=`uname -m`
280if [ -f /etc/rc.${arch} ]; then
281	. /etc/rc.${arch}
282fi
283
284# Recover vi editor files.
285vibackup=`echo /var/tmp/vi.recover/vi.*`
286if [ "$vibackup" != '/var/tmp/vi.recover/vi.*' ]; then
287	echo 'Recovering vi editor sessions'
288	for i in $vibackup; do
289		# Only test files that are readable.
290		if test ! -r $i; then
291			continue
292		fi
293
294		# Unmodified nvi editor backup files either have the
295		# execute bit set or are zero length.  Delete them.
296		if test -x $i -o ! -s $i; then
297			rm -f $i
298		fi
299	done
300
301	# It is possible to get incomplete recovery files, if the editor
302	# crashes at the right time.
303	virecovery=`echo /var/tmp/vi.recover/recover.*`
304	if [ "$virecovery" != "/var/tmp/vi.recover/recover.*" ]; then
305		for i in $virecovery; do
306			# Only test files that are readable.
307			if test ! -r $i; then
308				continue
309			fi
310
311			# Delete any recovery files that are zero length,
312			# corrupted, or that have no corresponding backup file.
313			# Else send mail to the user.
314			recfile=`awk '/^X-vi-recover-path:/{print $2}' < $i`
315			if test -n "$recfile" -a -s "$recfile"; then
316				sendmail -t < $i
317			else
318				rm -f $i
319			fi
320		done
321	fi
322fi
323
324# make a bounds file for msgs(1) if there isn't one already
325if [ ! -f /var/msgs/bounds ]; then
326	echo 0 > /var/msgs/bounds
327fi
328
329# for each valid dir in $local_startup, search for init scripts matching *.sh
330if [ "X${local_startup}" != X"NO" ]; then
331	echo -n 'Local package initialization:'
332	for dir in ${local_startup}; do
333		[ -d ${dir} ] && for script in ${dir}/*.sh; do
334			[ -x ${script} ] && ${script} start
335		done
336	done
337	echo .
338fi
339
340# Do traditional (but rather obsolete) rc.local file if it exists.
341[ -f /etc/rc.local ] && sh /etc/rc.local
342
343# Raise kernel security level.  This should be done only after `fsck' has
344# repaired local file systems if you want the securelevel to be greater than 1.
345if [ "X${kern_securelevel_enable}" != X"NO" -a "${kern_securelevel}" -ge 0 ]; 
346then
347	echo 'Raising kernel security level'
348	sysctl -w kern.securelevel=${kern_securelevel}
349fi
350
351date
352exit 0
353