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