xref: /original-bsd/etc/rc.local (revision f72a1a16)
1#
2# site-specific startup actions, daemons
3#
4#	@(#)rc.local	5.4 (Berkeley) 12/14/90
5#
6
7T=/tmp/_motd
8rm -f $T
9strings /vmunix | grep UNIX > $T
10echo "" >> $T
11sed '1,/^$/d' < /etc/motd >> $T
12cp $T /etc/motd
13chmod 666 /etc/motd
14rm -f $T
15
16echo -n 'starting local daemons:'
17
18# Kerberos runs ONLY on the Kerberos server machine
19#echo -n ' kerberos';	kerberos >> /var/log/kerberos.log &
20
21echo '.'
22