rc revision 3843
1#!/bin/sh
2#	$Id: rc,v 1.34 1994/09/29 17:27:46 pst 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
10stty status '^T'
11
12# Set shell to ignore SIGINT (2), but not children;
13# shell catches SIGQUIT (3) and returns to single user after fsck.
14trap : 2
15trap : 3	# shouldn't be needed
16
17HOME=/; export HOME
18PATH=/sbin:/bin:/usr/sbin:/usr/bin
19export PATH
20
21swapon -a
22
23if [ $1x = autobootx ]
24then
25	echo Automatic reboot in progress...
26	fsck -p
27	case $? in
28	0)
29		;;
30	2)
31		exit 1
32		;;
33	4)
34		reboot
35		echo "reboot failed... help!"
36		exit 1
37		;;
38	8)
39		echo "Automatic file system check failed... help!"
40		exit 1
41		;;
42	12)
43		echo "Reboot interrupted"
44		exit 1
45		;;
46	130)
47		# interrupt before catcher installed
48		exit 1
49		;;
50	*)
51		echo "Unknown error in reboot"
52		exit 1
53		;;
54	esac
55else
56	echo Skipping disk checks ...
57fi
58
59trap "echo 'Reboot interrupted'; exit 1" 3
60
61# root must be read/write both for NFS diskless and for VFS LKMs before
62# proceeding any further.
63mount -u -o rw /
64
65umount -a >/dev/null 2>&1
66mount -a -t nonfs
67
68# If the machine runs wall CMOS clock (compatible with MSDOS),
69# activate following line by creating empty file /etc/wall_cmos_clock
70# If this file not exist, following line does nothing (assumed
71# the machine runs UTC CMOS clock). See adjkerntz(8) for details.
72adjkerntz -i
73
74# configure serial devices
75if [ -f /etc/rc.serial ]
76then
77	sh /etc/rc.serial
78fi
79
80# set hostname, turn on network
81echo 'starting network'
82. /etc/netstart
83
84# clean up left-over files
85rm -f /etc/nologin
86rm -f /var/spool/lock/*
87rm -f /var/spool/uucp/.Temp/*
88(cd /var/run && { rm -rf -- *; cp /dev/null utmp; chmod 644 utmp; })
89
90echo -n 'starting system logger'
91rm -f /dev/log
92syslogd
93
94# $timedflags is imported from /etc/netstart;
95# if $timedflags == NO, timed isn't run.
96if [ X${timedflags} != X"NO" ]; then
97	echo -n ', time daemon'; timed $timedflags
98fi
99echo '.'
100
101# /var/crash should be a directory or a symbolic link
102# to the crash directory if core dumps are to be saved.
103if [ -d /var/crash ]; then
104	echo checking for core dump...
105	savecore /var/crash
106fi
107
108#				echo -n 'checking quotas:'
109#quotacheck -a
110#				echo ' done.'
111#quotaon -a
112
113# build ps databases
114kvm_mkdb 
115dev_mkdb
116
117chmod 666 /dev/tty[pqrs]*
118
119# check the password temp/lock file
120if [ -f /etc/ptmp ]
121then
122	logger -s -p auth.err \
123	'password file may be incorrect -- /etc/ptmp exists'
124fi
125
126# Recover vi editor files.
127virecovery=/var/tmp/vi.recover/recover.*
128if [ "$virecovery" != "/var/tmp/vi.recover/recover.*" ]; then
129	echo 'Recovering vi editor sessions'
130	for i in $virecovery; do
131		sendmail -t < $i
132	done
133fi
134
135echo clearing /tmp
136
137# prune quickly with one rm, then use find to clean up /tmp/[lq]*
138# (not needed with mfs /tmp, but doesn't hurt there...)
139(cd /tmp && rm -rf [a-km-pr-zA-Z]* &&
140    find -d . ! -name . ! -name lost+found ! -name quotas -exec rm -rf -- {} \;)
141
142# echo 'turning on accounting';	accton /var/account/acct
143
144echo -n standard daemons:
145echo -n ' cron';		cron
146echo '.'
147
148echo -n starting network daemons:
149
150# Portmapper should always be run, to provide RPC services for inetd.
151if [ -x /usr/sbin/portmap ]; then
152	echo -n ' portmap';		portmap
153fi
154
155# $gated and $routedflags are imported from /etc/netstart.
156# If $gated == YES, gated is used; otherwise routed.
157# If $routedflags == NO, routed isn't run.
158if [ X${gated} = X"YES" -a -r /etc/gated.conf ]; then
159	echo -n ' gated';	gated $gatedflags
160elif [ X"${routedflags}" != X"NO" ]; then
161	echo -n ' routed';	routed $routedflags
162fi
163
164if [ X${name_server} = X"YES" -a -r /etc/named.boot ]; then
165	echo -n ' named';		named
166fi
167
168# $ntpdate and $xntpdflags are imported from /etc/netstart.
169# If $ntpdate != NO, run ntpdate $ntpdate to set the date correctly.
170# If $xntpdflags != NO, start xntpd.
171if [ X"${ntpdate}" != X"NO" ]; then
172	echo ' ntpdate';	ntpdate $ntpdate
173fi
174
175if [ X"${xntpdflags}" != X"NO" ]; then
176	if [ X"${tickadjflags}" != X"NO" ]; then
177		echo 'adjusting kernel for xntpd'; tickadj ${tickadjflags--A}
178	fi
179	echo 'starting xntpd';	xntpd ${xntpdflags}
180fi
181
182if [ X"${ntpdate}" != X"NO" -o X"${xntpdflags}" != X"NO" ]; then
183	echo -n 'starting more network daemons:'
184fi
185
186# $rwhod is imported from /etc/netstart;
187# if $rwhod is set to something other than NO, rwhod is run.
188if [ ${rwhod-NO} != "NO" ]; then
189	echo -n ' rwhod';	rwhod
190fi
191
192echo -n ' printer';		lpd
193
194if [ X${nfs_server} = X"YES" -a -r /etc/exports ]; then
195	echo -n ' mountd';		mountd
196	echo -n ' nfsd';		nfsd -u -t 4
197fi
198
199if [ X"${nfs_client}" != X"NO" ]; then
200	echo -n ' nfsiod';		nfsiod -n 4
201fi
202
203if [ X"${amdflags}" != X"NO" ]; then
204	echo -n ' amd';			amd ${amdflags}
205fi
206
207# $sendmail_flags is imported from /etc/netstart;
208# if $sendmail_flags is something other than NO, sendmail is run.
209if [ X"${sendmail_flags}" != X"NO" -a -r /etc/sendmail.cf ]; then
210	echo -n ' sendmail';		sendmail ${sendmail_flags} 
211fi
212
213echo -n ' inetd';		inetd
214echo '.'
215
216mount -a -t nfs >/dev/null 2>&1 &	# XXX shouldn't need background
217
218# if [ -x /usr/libexec/xtend ]; then
219# 	echo -n ' xtend';   /usr/libexec/xtend
220# fi
221
222# Make shared lib searching a little faster.  Leave /usr/lib first if you
223# add your own entries or you may come to grief.
224if [ -x /sbin/ldconfig ]; then
225	_LDC=/usr/lib
226	if [ -d /usr/X11R6/lib ]; then _LDC="${_LDC} /usr/X11R6/lib" ; fi
227	if [ -d /usr/X386/lib ]; then _LDC="${_LDC} /usr/X386/lib" ; fi
228	if [ -d /usr/local/lib ]; then _LDC="${_LDC} /usr/local/lib" ; fi
229	if [ -d /usr/gnu/lib ]; then _LDC="${_LDC} /usr/gnu/lib" ; fi
230	echo 'setting ldconfig path:' ${_LDC}
231	ldconfig ${_LDC}
232fi
233
234sh /etc/rc.local
235
236date
237
238exit 0
239