home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh -u
- #
- # Have your "rc.local" file exec this script to start up UUCP.
- # NOTE: UUCP is not supported in this release.
- #
- # Copyright (C) 1992 by NeXT Computer, Inc. All rights reserved.
-
- # If the UUCP spool directory and the uucico program exist,
- # run uucico in master mode to attempt to clear any queued work
-
- if [ -d /usr/spool/uucp -a -f /usr/lib/uucp/uucico ]; then
- /usr/lib/uucp/uucico -r1 &
- (echo -n ' uucp') >/dev/console
- fi
-