27 lines
502 B
Plaintext
27 lines
502 B
Plaintext
#
|
|
# site-specific startup actions, daemons
|
|
#
|
|
# @(#)rc.local 5.4 (Berkeley) 12/14/90
|
|
#
|
|
|
|
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
|
|
|
|
echo -n 'starting local daemons:'
|
|
|
|
# Kerberos runs ONLY on the Kerberos server machine
|
|
if [ X${kerberos_server} = X"YES" ]; then
|
|
echo -n ' kerberos'; kerberos >> /var/log/kerberos.log &
|
|
fi
|
|
|
|
# For loading fonts/keyboard example look in /usr/share/examples/syscons
|
|
# directory
|
|
|
|
echo '.'
|