Home | History | Annotate | Line # | Download | only in etc
rc revision 1.130
      1 #	$NetBSD: rc,v 1.130 1999/09/03 13:40:15 itojun Exp $
      2 #	originally from: @(#)rc	8.2 (Berkeley) 3/17/94
      3 
      4 # System startup script run by init on autoboot
      5 # or after single-user.
      6 # Output and error are redirected to console by init,
      7 # and the console is the controlling terminal.
      8 
      9 stty status '^T'
     10 
     11 # Set shell to ignore SIGINT (2), but not children;
     12 # shell catches SIGQUIT (3) and returns to single user after fsck.
     13 trap : 2
     14 trap : 3	# shouldn't be needed
     15 
     16 export HOME=/
     17 export PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin
     18 
     19 # Configure ccd devices.
     20 if [ -f /etc/ccd.conf ]; then
     21 	ccdconfig -C
     22 fi
     23 
     24 # Configure raid devices.
     25 for dev in 0 1 2 3; do
     26 	if [ -f /etc/raid$dev.conf ]; then
     27 		raidctl -c /etc/raid$dev.conf raid$dev
     28 	fi
     29 done
     30 
     31 # Add all block-type swap devices; these might be necessary
     32 # during disk checks.
     33 swapctl -A -t blk
     34 
     35 if [ -e /fastboot ]; then
     36 	echo "Fast boot: skipping disk checks."
     37 elif [ "$1" = autoboot ]; then
     38 	echo "Automatic boot in progress: starting file system checks."
     39 	fsck -p
     40 	case $? in
     41 	0)
     42 		;;
     43 	2)
     44 		exit 1
     45 		;;
     46 	4)
     47 		echo "Rebooting..."
     48 		reboot
     49 		echo "Reboot failed; help!"
     50 		exit 1
     51 		;;
     52 	8)
     53 		echo "Automatic file system check failed; help!"
     54 		exit 1
     55 		;;
     56 	12)
     57 		echo "Boot interrupted."
     58 		exit 1
     59 		;;
     60 	130)
     61 		# interrupt before catcher installed
     62 		exit 1
     63 		;;
     64 	*)
     65 		echo "Unknown error; help!"
     66 		exit 1
     67 		;;
     68 	esac
     69 fi
     70 
     71 trap "echo 'Boot interrupted.'; exit 1" 3
     72 
     73 umount -a >/dev/null 2>&1
     74 mount /
     75 rm -f /fastboot		# XXX (root now writeable)
     76 
     77 if [ -f /etc/rc.subr ]; then
     78 	. /etc/rc.subr
     79 else
     80 	echo "Can't read /etc/rc.subr; aborting."
     81 	exit 1;
     82 fi
     83 
     84 if [ -f /etc/rc.conf ]; then
     85 	. /etc/rc.conf
     86 fi
     87 
     88 if [ "$rc_configured" != YES ]; then
     89 	echo "/etc/rc.conf is not configured. Multiuser boot aborted."
     90 	exit 1
     91 fi
     92 
     93 # set flags on ttys.  (do early, in case they use tty for SLIP in netstart)
     94 echo 'setting tty flags'
     95 ttyflags -a
     96 
     97 # load kernel modules specified in /etc/lkm.conf if the /usr filesystem
     98 # is already present with "/" or can be mounted now
     99 if checkyesno lkm && [ -f /etc/rc.lkm ]; then
    100 	mount /usr >/dev/null 2>&1
    101 	if [ -x /usr/bin/ld ]; then
    102 		lkmstage=BEFORENET
    103 		. /etc/rc.lkm
    104 	fi
    105 fi
    106 
    107 mount_critical_filesystems local
    108 
    109 # set hostname, turn on network
    110 echo 'starting network'
    111 sh /etc/netstart
    112 if [ $? -ne 0 ]; then
    113 	exit 1
    114 fi
    115 
    116 mount_critical_filesystems network
    117 
    118 # Network Address Translation...
    119 if checkyesno ipnat && [ -f /etc/ipnat.conf ]; then
    120 	echo 'installing NAT rules ... '
    121 	if ! checkyesno ipfilter || [ ! -f /etc/ipf.conf ]; then
    122 		ipf -E -Fa
    123 	fi
    124 	ipnat -F -f /etc/ipnat.conf
    125 fi
    126 
    127 # "Critical" file systems are now mounted.  Go ahead and swap
    128 # to files now, since they will be residing in the critical file
    129 # systems (or, at least, better).
    130 swapctl -A -t noblk
    131 
    132 # Check for no swap, and warn about it unless that is desired.
    133 if ! checkyesno no_swap; then
    134 	swapctl -s | grep 'no swap devices configured' > /dev/null && \
    135 		echo "WARNING:  no swap space configured!"
    136 fi
    137 
    138 # clean up left-over files
    139 rm -f /etc/nologin
    140 rm -f /var/spool/lock/LCK.*
    141 rm -f /var/spool/uucp/STST/*
    142 (cd /var/run && { rm -rf -- *; install -c -m 664 -g utmp /dev/null utmp; })
    143 
    144 # get the system dmesg output, hopefully containing the boot messages
    145 # $dmesg_flags is imported from /etc/rc.conf
    146 if checkyesno dmesg; then
    147 	dmesg $dmesg_flags > /var/run/dmesg.boot
    148 fi
    149 
    150 if checkyesno wscons && [ -f /etc/rc.wscons ]; then
    151 	echo 'configuring wscons'
    152 	/bin/sh /etc/rc.wscons $wscons_flags
    153 fi
    154 
    155 # start the system logger first, so that all messages from daemons
    156 # are logged, then start savecore to get a dump on low memory systems
    157 # and then start the name server.
    158 
    159 if checkyesno syslogd; then
    160 	echo 'starting system logger'
    161 	# Transitional symlink for old binaries
    162 	if [ ! -h /dev/log ] ; then
    163 		ln -sf /var/run/log /dev/log
    164 	fi
    165 	rm -f /var/run/log
    166 	syslogd $syslogd_flags
    167 fi
    168 
    169 # Enable ipmon (only useful if ipfilter is running)
    170 # NOTE: requires the IPFILTER_LOG kernel option.
    171 if checkyesno ipmon; then
    172 	echo 'starting ipmon'
    173 	ipmon $ipmon_flags &
    174 fi
    175 
    176 # /var/crash should be a directory or a symbolic link
    177 # to the crash directory if core dumps are to be saved.
    178 if checkyesno savecore; then
    179 	if [ -d /var/crash/. ]; then
    180 		echo checking for core dump...
    181 		savecore $savecore_flags /var/crash
    182 	else
    183 		logger -s "WARNING: no /var/crash directory; savecore not run."
    184 	fi
    185 fi
    186 
    187 if checkyesno named; then
    188 	echo 'starting name server';	named $named_flags
    189 fi
    190 
    191 # set time, if requested
    192 if checkyesno ntpdate; then
    193 	if [ -z "$ntpdate_hosts" ]; then
    194 		ntpdate_hosts=`awk '
    195 		    /^server[ \t]*127.127/	{next}
    196 		    /^(server|peer)/			{print $2}
    197 		' </etc/ntp.conf`
    198 	fi
    199 	if [ -n "$ntpdate_hosts"  ]; then
    200 		echo 'Setting date via ntp.'
    201 		ntpdate -b -s $ntpdate_hosts
    202 	fi
    203 fi
    204 
    205 # now start the rpc servers, for YP server/client.
    206 echo -n 'starting rpc daemons:'
    207 
    208 # note that portmap is generally required for all other rpc services.
    209 if checkyesno portmap; then
    210 	echo -n ' portmap';             portmap $portmap_flags
    211 fi
    212 
    213 if checkyesno ypserv; then
    214         echo -n ' ypserv';              ypserv $ypserv_flags
    215 fi
    216 
    217 if checkyesno ypbind; then
    218         echo -n ' ypbind';              ypbind $ypbind_flags
    219 fi
    220 
    221 if checkyesno yppasswdd; then
    222         echo -n ' rpc.yppasswdd';       rpc.yppasswdd $yppasswdd_flags
    223 fi
    224 
    225 if checkyesno bootparamd; then
    226 	if [ -r /etc/bootparams ]; then
    227 		echo -n ' rpc.bootparamd'; rpc.bootparamd $bootparamd_flags
    228 	else
    229 		echo
    230 		logger -s "WARNING: /etc/bootparams not found. " \
    231 		    "bootparamd not started."
    232 	fi
    233 fi
    234 
    235 echo '.'
    236 
    237 # load kernel modules specified in /etc/lkm.conf
    238 if checkyesno lkm; then
    239 	if [ -r /etc/rc.lkm ]; then
    240 		lkmstage=BEFOREMOUNT
    241 		. /etc/rc.lkm
    242 	else
    243 		logger -s "WARNING: /etc/rc.lkm not found; LKMs not loaded."
    244 	fi
    245 fi
    246 
    247 mount -a
    248 
    249 # now start the rpc servers, for NFS server/client.
    250 echo -n 'starting nfs daemons:'
    251 
    252 nfs_locking=NO
    253 
    254 if checkyesno nfs_server; then
    255 	if [ -r /etc/exports ]; then
    256 		rm -f /var/db/mountdtab
    257 		echo -n > /var/db/mountdtab
    258 		echo -n ' mountd';              mountd $mountd_flags
    259 		echo -n ' nfsd';                nfsd $nfsd_flags
    260 		nfs_locking=YES
    261 	else
    262 		echo
    263 		logger -s "WARNING: /etc/exports not readable; " \
    264 		    "NFS server not started."
    265 	fi
    266 fi
    267 
    268 if checkyesno nfs_client; then
    269         echo -n ' nfsiod';              nfsiod $nfsiod_flags
    270 	nfs_locking=YES
    271 fi
    272 
    273 if checkyesno nfs_locking; then
    274 	if checkyesno statd; then
    275 		echo -n ' rpc.statd';		rpc.statd $statd_flags
    276 	fi
    277 	if checkyesno lockd; then
    278 		echo -n ' rpc.lockd';		rpc.lockd $lockd_flags
    279 	fi
    280 fi
    281 
    282 if checkyesno amd; then
    283 	if [ -d "$amd_dir" ]; then
    284 		if [ -r "$amd_master" ]; then
    285 			echo -n ' amd'
    286 			amd $amd_flags -p -a $amd_dir \
    287 			`sed s/#.*$// <$amd_master`  >/var/run/amd.pid
    288 		else
    289 			echo
    290 			logger -s "WARNING: \$amd_master ($amd_master)not " \
    291 			    "readable; amd not started."
    292 		fi
    293 	else
    294 		echo
    295 		logger -s "WARNING: \$amd_dir ($amd_dir) not a directory; " \
    296 		    "amd not started."
    297 	fi
    298 fi
    299 
    300 echo '.'
    301 
    302 if [ -f /sbin/ldconfig ]; then
    303 	echo 'creating runtime link editor directory cache.'
    304 	ldconfig
    305 fi 
    306 
    307 # load kernel modules specified in /etc/lkm.conf
    308 if checkyesno lkm && [ -f /etc/rc.lkm ]; then
    309 	lkmstage=AFTERMOUNT
    310 	. /etc/rc.lkm
    311 fi
    312 
    313 # if $securelevel is set, change it here, else if it is 0, change
    314 # it to 1 here, before we start login services.
    315 if [ -n "$securelevel" ]; then
    316 	echo -n 'setting securelevel: '
    317 	sysctl -w kern.securelevel=$securelevel
    318 else
    319 	securelevel=`sysctl -n kern.securelevel`
    320 	if [ x"$securelevel" = x0 ]; then
    321 		echo -n 'setting securelevel: '
    322 		sysctl -w kern.securelevel=1
    323 	fi
    324 fi
    325 
    326 echo -n 'checking quotas:'; quotacheck -a; echo ' done.'
    327 quotaon -a
    328 
    329 # build ps databases
    330 echo 'building databases...'
    331 kvm_mkdb /netbsd
    332 dev_mkdb
    333 
    334 chmod 666 /dev/tty[pqrs]*
    335 
    336 # check the password temp/lock file
    337 if [ -f /etc/ptmp ]
    338 then
    339 	logger -s -p auth.err \
    340 	'password file may be incorrect -- /etc/ptmp exists'
    341 fi
    342 
    343 # XXX replace me with a script that works!
    344 virecovery=`echo /var/tmp/vi.recover/recover.*`
    345 if [ "$virecovery" != "/var/tmp/vi.recover/recover.*" ]; then
    346 	echo preserving editor files
    347 	for i in $virecovery; do
    348 		if [ -f $i ]; then
    349 			sendmail -t < $i
    350 		fi
    351 	done
    352 fi
    353 
    354 echo clearing /tmp
    355 
    356 # Prune quickly with one rm, then use find to clean up /tmp/[lq]* (this
    357 # is not needed with mfs /tmp, but doesn't hurt anything).
    358 (cd /tmp && rm -rf [a-km-pr-zA-Z]* &&
    359     find . ! -name . ! -name lost+found ! -name quota.user \
    360 	! -name quota.group -exec rm -rf -- {} \; -type d -prune)
    361 
    362 # Update kernel info in /etc/motd
    363 # Must be done *before* interactive logins are possible to prevent
    364 # possible race conditions.
    365 if checkyesno update_motd; then
    366 	echo 'updating motd.'
    367 	if [ ! -f /etc/motd ]; then
    368 		install -c -o root -g wheel -m 664 /dev/null /etc/motd
    369 	fi
    370 	T=/etc/_motd
    371 	rm -f $T
    372 	sysctl -n kern.version | sed 1q > $T
    373 	echo "" >> $T
    374 	sed '1,/^$/d' < /etc/motd >> $T
    375 	cmp -s $T /etc/motd || cp $T /etc/motd
    376 	rm -f $T
    377 fi
    378 
    379 if [ -f /var/account/acct ]; then
    380 	echo 'turning on accounting';	accton /var/account/acct
    381 fi
    382 
    383 echo -n standard daemons:
    384 if checkyesno update; then
    385 	echo -n ' update';		update $update_flags
    386 fi
    387 if checkyesno cron; then
    388 	echo -n ' cron';		cron
    389 fi
    390 echo '.'
    391 
    392 # now start all the other daemons
    393 echo -n starting network daemons:
    394 
    395 if checkyesno gated && checkyesno routed; then
    396 	echo
    397 	logger -s "WARNING: gated and routed both requested to be run: " \
    398 	    "running only gated."
    399 	routed=NO
    400 fi
    401 
    402 if checkyesno gated; then
    403 	if [ -r /etc/gated.conf ]; then
    404 		echo -n ' gated';		gated $gated_flags
    405 	else
    406 		logger -s "WARNING: no /etc/gated.conf; gated not started."
    407 	fi
    408 fi
    409 
    410 if checkyesno routed; then
    411 	echo -n ' routed';		routed $routed_flags
    412 fi
    413 
    414 if checkyesno mrouted; then
    415 	echo -n ' mrouted';		mrouted $mrouted_flags
    416 fi
    417 
    418 if checkyesno route6d; then
    419 	echo -n ' route6d';		route6d $route6d_flags
    420 fi
    421 
    422 if checkyesno rtsold; then
    423 	if checkyesno ip6forwarding; then
    424 		logger -s "WARNING: rtsold cannot be used on IPv6 router."
    425 	else
    426 		echo -n ' rtsold';	rtsold $rtsold_flags
    427 	fi
    428 fi
    429 
    430 if checkyesno rtadvd; then
    431 	if checkyesno ip6forwarding; then
    432 		echo -n ' rtadvd';	rtadvd $rtadvd_flags
    433 	else
    434 		logger -s "WARNING: rtadvd cannot be used on IPv6 host."
    435 	fi
    436 fi
    437 
    438 if checkyesno timed; then
    439 	echo -n ' timed'; 		timed $timed_flags
    440 fi
    441 
    442 if checkyesno xntpd; then
    443 	echo -n ' xntpd';		xntpd $xntpd_flags
    444 fi
    445 
    446 if checkyesno dhcpd; then
    447 	if [ -r /etc/dhcpd.conf ]; then
    448 		echo -n ' dhcpd';		dhcpd $dhcpd_flags
    449 	else
    450 		echo
    451 		logger -s "WARNING: /etc/dhcpd.conf not readable; " \
    452 		    "dhcpd not started."
    453 	fi
    454 elif checkyesno dhcrelay; then
    455 	echo -n ' dhcrelay';            dhcrelay $dhcrelay_flags
    456 fi
    457 
    458 if checkyesno rwhod; then
    459 	echo -n ' rwhod';		rwhod
    460 fi
    461 
    462 if checkyesno lpd; then
    463 	echo -n ' lpd';			lpd $lpd_flags
    464 fi
    465 
    466 # We call sendmail with a full path so that SIGHUP works.
    467 if checkyesno sendmail; then
    468 	if [ -r /etc/sendmail.cf ]; then
    469 		echo -n ' sendmail';	/usr/sbin/sendmail $sendmail_flags
    470 	else
    471 		echo
    472 		logger -s "WARNING: /etc/sendmail.cf not readable; " \
    473 		    "sendmail not started."
    474 	fi
    475 fi
    476 
    477 # Start xfs before boot daemons, so its ready before client xterminals.
    478 if checkyesno xfs; then
    479 	echo -n ' xfs';			xfs $xfs_flags &
    480 	sleep 2
    481 fi
    482 
    483 if checkyesno rarpd; then
    484 	if [ -r /etc/ethers ]; then
    485 		echo -n ' rarpd';	rarpd $rarpd_flags
    486 	else
    487 		echo
    488 		logger -s "WARNING: /etc/ethers not readable; " \
    489 		    "rarpd not started."
    490 	fi
    491 fi
    492 
    493 if checkyesno rbootd; then
    494 	if [ -r /etc/rbootd.conf ]; then
    495 		echo -n ' rbootd';	rbootd $rbootd_flags
    496 	else
    497 		echo
    498 		logger -s "WARNING: /etc/rbootd.conf not readable; " \
    499 		    "rbootd not started."
    500 	fi
    501 fi
    502 
    503 if checkyesno mopd; then
    504 	echo -n ' mopd';		mopd $mopd_flags
    505 fi
    506 
    507 if checkyesno apmd; then
    508 	echo -n ' apmd';		apmd $apmd_flags
    509 fi
    510 
    511 if checkyesno screenblank; then
    512 	echo -n ' screenblank';		screenblank $screenblank_flags
    513 fi
    514 
    515 if checkyesno inetd; then
    516 	if [ -r /etc/inetd.conf ]; then
    517 		echo -n ' inetd';	inetd $inetd_flags
    518 	else
    519 		echo
    520 		logger -s "WARNING: /etc/inetd.conf not readable; " \
    521 		    "inetd not started."
    522 	fi
    523 fi
    524 
    525 echo '.'
    526 
    527 # Kerberos runs ONLY on the Kerberos server machine
    528 if checkyesno kerberos; then
    529 	echo -n 'starting kerberos daemons:'
    530 	echo -n ' kerberos';	kerberos >> /var/log/kerberos.log &
    531 	echo -n ' kadmind';	kadmind -n >> /var/log/kadmind.log &
    532 	echo '.'
    533 fi
    534 
    535 # xdm after wscons - need a virtual screen for X
    536 if checkyesno xdm; then
    537 	echo 'starting xdm'
    538 	xdm $xdm_flags
    539 fi
    540 
    541 . /etc/rc.local
    542 
    543 date
    544 exit 0
    545