1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00
freebsd/etc/rc.local

20 lines
295 B
Plaintext
Raw Normal View History

#
# site-specific startup actions, daemons
#
1995-03-30 00:10:31 +00:00
# $Id: rc.local,v 1.16 1995/03/16 16:58:01 wollman Exp $
#
T=/tmp/_motd
rm -f $T
uname -rs > $T
echo "" >> $T
sed '1,/^$/d' < /etc/motd >> $T
cp $T /etc/motd
chmod 644 /etc/motd
rm -f $T
_HOST=`hostname`
echo -n 'starting local daemons:'
echo '.'