home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / bsd_srcs / etc / rc.local < prev    next >
Encoding:
Text File  |  1990-12-14  |  389 b   |  22 lines

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