ad34f5a438
Submitted by: Philippe Charnier <charnier@xp11.frmug.org>
14 lines
340 B
Bash
Executable File
14 lines
340 B
Bash
Executable File
#!/bin/sh -
|
|
#
|
|
# $Id: 300.uucp,v 1.1.1.1 1997/08/16 17:04:02 pst Exp $
|
|
#
|
|
# This is really here for backwards compatibility, clean.weekly is not
|
|
# created by default anymore.
|
|
|
|
if [ -d /var/spool/uucp -a -f /usr/libexec/uucp/clean.weekly ]; then
|
|
echo ""
|
|
echo "Cleaning up UUCP:"
|
|
|
|
echo /usr/libexec/uucp/clean.weekly | su daemon
|
|
fi
|