home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / mint / init_5 / rc.loc < prev    next >
Encoding:
Text File  |  1993-08-03  |  384 b   |  23 lines

  1. #!/bin/sh
  2. # This is rc.local.
  3. #
  4. # This file does everything which is local to the current machine.
  5. #
  6.  
  7. echo -n "starting local daemons:"
  8.  
  9. # Start up the printer daemon.
  10.  
  11. if [ -f /usr/ucb/lpd.ttp ] ; then
  12.     ( /usr/ucb/lpd & ) >& /dev/null ; echo -n " lpd"
  13. fi
  14.  
  15. echo "."
  16.  
  17. # Set the TT's console into auto-wrap mode. (Why does the TT start up without
  18. # auto-text-wrap?)
  19.  
  20. echo -n "v"
  21.  
  22. exit
  23.