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