rc revision 42515
1#!/bin/sh
2#	$Id: rc,v 1.165 1999/01/10 22:06:22 n_hibma 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
11# this file, but rather in /etc/rc.conf.  Please check this file
12# first before contemplating any changes here.
13
14stty status '^T'
15
16# Set shell to ignore SIGINT (2), but not children;
17# shell catches SIGQUIT (3) and returns to single user after fsck.
18trap : 2
19trap : 3	# shouldn't be needed
20
21HOME=/; export HOME
22PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin
23export PATH
24
25# Configure ccd devices.
26if [ -f /etc/ccd.conf ]; then
27	ccdconfig -C
28fi
29
30swapon -a
31
32if [ $1x = autobootx ]; then
33	echo Automatic reboot in progress...
34	fsck -p
35	case $? in
36	0)
37		;;
38	2)
39		exit 1
40		;;
41	4)
42		reboot
43		echo "reboot failed... help!"
44		exit 1
45		;;
46	8)
47		echo "Automatic file system check failed... help!"
48		exit 1
49		;;
50	12)
51		echo "Reboot interrupted"
52		exit 1
53		;;
54	130)
55		# interrupt before catcher installed
56		exit 1
57		;;
58	*)
59		echo "Unknown error in reboot"
60		exit 1
61		;;
62	esac
63else
64	echo Skipping disk checks ...
65fi
66
67trap "echo 'Reboot interrupted'; exit 1" 3
68
69# root must be read/write for NFS diskless before proceeding any further.
70mount -u -o rw /
71if [ $? != 0 ]; then
72	echo "Filesystem mount failed, startup aborted"
73	exit 1
74fi
75
76umount -a >/dev/null 2>&1
77
78mount -a -t nonfs
79if [ $? != 0 ]; then
80	echo "Filesystem mount failed, startup aborted"
81	exit 1
82fi
83
84# If there is a global system configuration file, suck it in.
85if [ -f /etc/rc.conf ]; then
86	. /etc/rc.conf
87fi
88
89# If old file exists, whine until they fix it.
90if [ -f /etc/sysconfig ]; then
91	echo "Warning: /etc/sysconfig has been replaced by /etc/rc.conf."
92	echo "You should switch to /etc/rc.conf ASAP to eliminate this warning."
93fi
94
95adjkerntz -i
96
97clean_var() {
98	if [ ! -f /var/run/clean_var ]; then
99		rm -rf /var/run/*
100		rm -f /var/spool/lock/*
101		rm -rf /var/spool/uucp/.Temp/*
102		# Keep a copy of the boot messages around
103		dmesg >/var/run/dmesg.boot
104		# And an initial utmp file
105		(cd /var/run && cp /dev/null utmp && chmod 644 utmp; )
106		>/var/run/clean_var
107	fi
108}
109
110if [ -d /var/run -a -d /var/spool/lock -a -d /var/spool/uucp/.Temp ]; then
111	# network_pass1() *may* end up writing stuff to /var - we don't want to
112	# remove it immediately afterwards - *nor* to we want to fail to clean
113	# an nfs-mounted /var.
114	clean_var
115fi
116
117# Add additional swapfile, if configured.
118if [ "x$swapfile" != "xNO" -a -w "$swapfile" -a -b /dev/vn0b ]; then
119	echo "Adding $swapfile as additional swap."
120	vnconfig /dev/vn0b $swapfile && swapon /dev/vn0b
121fi
122
123# configure serial devices
124if [ -f /etc/rc.serial ]; then
125	. /etc/rc.serial
126fi
127
128# start up PC-card configuration
129if [ -f /etc/rc.pccard ]; then
130	. /etc/rc.pccard
131fi
132
133# start up the initial network configuration.
134if [ -f /etc/rc.network ]; then
135	. /etc/rc.network	# We only need to do this once.
136	network_pass1
137fi
138
139echo -n "Mounting NFS file systems"
140mount -a -t nfs
141echo .
142
143# Whack the pty perms back into shape.
144chmod 666 /dev/tty[pqrsPQRS]*
145
146# clean up left-over files
147clean_var			# If it hasn't already been done
148rm /var/run/clean_var
149
150#
151# Clearing /tmp at boot-time seems to have a long tradition.  It doesn't
152# help in any way for long-living systems, and it might accidentally
153# clobber files you would rather like to have preserved after a crash
154# (if not using mfs /tmp anyway).
155#
156# See also the example of another cleanup policy in /etc/periodic/daily.
157#
158if [ "X${clear_tmp_enable}" = X"YES" ]; then
159	echo clearing /tmp
160
161	# prune quickly with one rm, then use find to clean up /tmp/[lq]*
162	# (not needed with mfs /tmp, but doesn't hurt there...)
163	(cd /tmp && rm -rf [a-km-pr-zA-Z]* &&
164		find -d . ! -name . ! -name lost+found ! -name quotas -exec rm -rf -- {} \;)
165
166fi
167
168# Remove X lock files, since they will prevent you from restarting X11 
169# after a system crash.
170rm -f /tmp/.X*-lock /tmp/.X11-unix/*
171
172# snapshot any kernel -c changes back to disk
173echo 'recording kernel -c changes'
174dset -q
175
176echo -n 'additional daemons:'
177# start system logging and name service (named needs to start before syslogd
178# if you don't have a /etc/resolv.conf)
179#
180if [ "X${syslogd_enable}" = X"YES" ]; then
181	# Transitional symlink (for the next couple of years :) until all
182	# binaries had a chance to move towards /var/run/log.
183	if [ ! -h /dev/log ] ; then
184		# might complain for r/o root f/s
185		ln -sf /var/run/log /dev/log
186	fi
187
188	rm -f /var/run/log
189	echo -n ' syslogd';		syslogd ${syslogd_flags}
190fi
191echo '.'
192
193# enable dumpdev so that savecore can see it
194# /var/crash should be a directory or a symbolic link
195# to the crash directory if core dumps are to be saved.
196if [ "X${dumpdev}" != X"NO" -a -e ${dumpdev} -a -d /var/crash ]; then
197	dumpon ${dumpdev}
198	echo -n checking for core dump...
199	savecore /var/crash
200fi
201
202if [ -n "$network_pass1_done" ]; then
203	network_pass2
204fi
205
206# Check the quotas (must be after ypbind if using NIS)
207if [ "X${check_quotas}" = X"YES" ]; then
208	echo -n 'checking quotas:'
209	quotacheck -a
210	echo ' done.'
211	quotaon -a
212fi
213
214if [ -n "$network_pass2_done" ]; then
215	network_pass3
216fi
217
218
219# build ps databases
220kvm_mkdb 
221dev_mkdb
222
223# check the password temp/lock file
224if [ -f /etc/ptmp ]
225then
226	logger -s -p auth.err \
227	"password file may be incorrect -- /etc/ptmp exists"
228fi
229
230if [ "X${accounting_enable}" = X"YES" -a -d /var/account ]; then
231	echo 'turning on accounting'
232	if [ ! -e /var/account/acct ]; then
233		touch /var/account/acct
234	fi
235	accton /var/account/acct
236fi
237
238# Make shared lib searching a little faster.  Leave /usr/lib first if you
239# add your own entries or you may come to grief.
240if [ -x /sbin/ldconfig ]; then
241	if [ X"`/usr/bin/objformat`" = X"elf" ]; then
242		_LDC=/usr/lib
243		for i in $ldconfig_paths; do
244			if test -d $i; then
245				_LDC="${_LDC} $i"
246			fi
247		done
248		echo 'setting ELF ldconfig path:' ${_LDC}
249		ldconfig -elf ${_LDC}
250	fi
251
252	# Legacy aout support for i386 only
253	if [ X"`sysctl -n hw.machine`" = X"i386" ]; then
254		# Default the a.out ldconfig path, in case the system's
255		# /etc/rc.conf hasn't been updated.
256		: ${ldconfig_paths_aout=${ldconfig_paths}}
257		_LDC=/usr/lib/aout
258		for i in $ldconfig_paths_aout; do
259			if test -d $i; then
260				_LDC="${_LDC} $i"
261			fi
262		done
263		echo 'setting a.out ldconfig path:' ${_LDC}
264		ldconfig -aout ${_LDC}
265	fi
266fi
267
268# Now start up miscellaneous daemons that don't belong anywhere else
269#
270echo -n starting standard daemons:
271if [ "X${inetd_enable}" != X"NO" ]; then
272	echo -n ' inetd';	inetd ${inetd_flags}
273fi
274
275if [ "X${cron_enable}" != X"NO" ]; then
276	echo -n ' cron';	cron
277fi
278
279if [ "X${lpd_enable}" = X"YES" ]; then
280	echo -n ' printer';		lpd ${lpd_flags}
281fi
282
283if [ "X${sendmail_enable}" = X"YES" -a -r /etc/sendmail.cf ]; then
284	echo -n ' sendmail';	/usr/sbin/sendmail ${sendmail_flags}
285fi
286
287if [ "X${usbd_enable}" = X"YES" ]; then
288	echo -n ' usbd';	/usr/sbin/usbd ${usbd_flags}
289fi
290
291echo '.'
292
293# configure implementation specific stuff
294arch=`uname -m`
295if [ -f /etc/rc.${arch} ]; then
296	. /etc/rc.${arch}
297fi
298
299# Recover vi editor files.
300vibackup=`echo /var/tmp/vi.recover/vi.*`
301if [ "$vibackup" != '/var/tmp/vi.recover/vi.*' ]; then
302	echo 'Recovering vi editor sessions'
303	for i in $vibackup; do
304		# Only test files that are readable.
305		if test ! -r $i; then
306			continue
307		fi
308
309		# Unmodified nvi editor backup files either have the
310		# execute bit set or are zero length.  Delete them.
311		if test -x $i -o ! -s $i; then
312			rm -f $i
313		fi
314	done
315
316	# It is possible to get incomplete recovery files, if the editor
317	# crashes at the right time.
318	virecovery=`echo /var/tmp/vi.recover/recover.*`
319	if [ "$virecovery" != "/var/tmp/vi.recover/recover.*" ]; then
320		for i in $virecovery; do
321			# Only test files that are readable.
322			if test ! -r $i; then
323				continue
324			fi
325
326			# Delete any recovery files that are zero length,
327			# corrupted, or that have no corresponding backup file.
328			# Else send mail to the user.
329			recfile=`awk '/^X-vi-recover-path:/{print $2}' < $i`
330			if test -n "$recfile" -a -s "$recfile"; then
331				sendmail -t < $i
332			else
333				rm -f $i
334			fi
335		done
336	fi
337fi
338
339# make a bounds file for msgs(1) if there isn't one already
340if [ ! -f /var/msgs/bounds ]; then
341	echo 0 > /var/msgs/bounds
342fi
343
344# for each valid dir in $local_startup, search for init scripts matching *.sh
345if [ "X${local_startup}" != X"NO" ]; then
346	echo -n 'Local package initialization:'
347	for dir in ${local_startup}; do
348		[ -d ${dir} ] && for script in ${dir}/*.sh; do
349			[ -x ${script} ] && \
350				(trap 'exit 1' 2 ; ${script} start ; echo -n)
351		done
352	done
353	echo .
354fi
355
356if [ "X${update_motd}" != X"NO" ]; then
357	T=/tmp/_motd
358	rm -f $T
359	uname -v | sed -e 's,^\([^#]*\) #\(.* [1-2][0-9][0-9][0-9]\).*/\([^\]*\) $,\1 (\3) #\2,' > $T
360	awk '{if (NR == 1) {if ($1 == "FreeBSD") {next} else {print "\n"$0}} else {print}}' < /etc/motd >> $T
361	cp $T /etc/motd
362	chmod 644 /etc/motd
363	rm -f $T
364fi
365
366# Run rc.devfs if present to customify devfs
367[ -f /etc/rc.devfs ] && sh /etc/rc.devfs
368
369# Do traditional (but rather obsolete) rc.local file if it exists.  If you
370# use this file and want to make it programmatic, source /etc/rc.conf in
371# /etc/rc.local and add your custom variables to /etc/rc.conf.local, as
372# shown below.  Please do not put local extensions into /etc/rc itself. 
373# Use /etc/rc.local
374#
375# ---- rc.local  ----
376#     if [ -f /etc/rc.conf ]; then
377#             . /etc/rc.conf
378#     fi
379#
380#     ... additional startup conditionals ...
381# ---- rc.local  ----
382#
383
384if [ -f /etc/rc.local ]; then
385    echo -n 'starting local daemons:'
386    sh /etc/rc.local
387    echo '.'
388fi
389
390# Raise kernel security level.  This should be done only after `fsck' has
391# repaired local file systems if you want the securelevel to be greater than 1.
392if [ "X${kern_securelevel_enable}" = X"YES" -a "${kern_securelevel}" -ge 0 ]; 
393then
394	echo 'Raising kernel security level'
395	sysctl -w kern.securelevel=${kern_securelevel}
396fi
397
398date
399exit 0
400