BSD 4_3_Tahoe development
[unix-history] / usr / src / sys / tahoedist / rc.local
CommitLineData
740835bf
C
1# site-specific startup actions, daemons
2
3strings /vmunix | grep UNIX >/tmp/t1
4tail +2 /etc/motd >>/tmp/t1
5mv /tmp/t1 /etc/motd
6chmod 666 /etc/motd
7
8echo -n starting local daemons: >/dev/console
9#if [ -f /etc/timed ]; then
10# timed -M & echo -n ' timed' >/dev/console
11#fi
12if [ -f /usr/lib/sendmail ]; then
13 (cd /usr/spool/mqueue; rm -f lf*)
14 /usr/lib/sendmail -bd -q30m; echo -n ' sendmail' >/dev/console
15fi
16 echo '.' >/dev/console