home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- # This is rc.local.
- #
- # This file does everything which is local to the current machine.
- #
-
- echo -n "starting local daemons:"
-
- # Start up the printer daemon.
-
- if [ -f /usr/ucb/lpd.ttp ] ; then
- ( /usr/ucb/lpd & ) >& /dev/null ; echo -n " lpd"
- fi
-
- echo "."
-
- # Set the TT's console into auto-wrap mode. (Why does the TT start up without
- # auto-text-wrap?)
-
- echo -n "v"
-
- exit
-