home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2 / Openstep-4.2-Intel-User.iso / usr / template / client / etc / rc.uucp < prev    next >
Text File  |  1992-03-04  |  445b  |  15 lines

  1. #!/bin/sh -u
  2. #
  3. # Have your "rc.local" file exec this script to start up UUCP.
  4. # NOTE: UUCP is not supported in this release.
  5. #
  6. # Copyright (C) 1992 by NeXT Computer, Inc.  All rights reserved.
  7.  
  8. # If the UUCP spool directory and the uucico program exist,
  9. # run uucico in master mode to attempt to clear any queued work
  10.  
  11. if [ -d /usr/spool/uucp -a -f /usr/lib/uucp/uucico ]; then
  12.     /usr/lib/uucp/uucico -r1 &
  13.     (echo -n ' uucp')                >/dev/console
  14. fi
  15.