7bb3055523
because the end user may need to add local directories to be searched. And rc.local is a much more appropriate place for local changes. I emailed pk on this matter, and he said that the overhead of not having linker hints for the daemons started by rc would not be significant. This change also closes bug #217.
28 lines
549 B
Plaintext
28 lines
549 B
Plaintext
#
|
|
# site-specific startup actions, daemons
|
|
#
|
|
# From: @(#)rc.local 5.4 (Berkeley) 12/14/90
|
|
# $Id: rc.local,v 1.8 1994/06/03 05:02:12 jtc Exp $
|
|
#
|
|
|
|
T=/tmp/_motd
|
|
rm -f $T
|
|
sysctl -n kern.version | sed 1q > $T
|
|
echo "" >> $T
|
|
sed '1,/^$/d' < /etc/motd >> $T
|
|
cp $T /etc/motd
|
|
chmod 666 /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
|
|
|
|
echo '.'
|
|
|
|
echo 'runtime link editor directory cache'
|
|
ldconfig
|