a671e01be7
Please note: I'm not activating this until I successfully get the changes back into my local CVS repository to do one final check. Early adopters are welcome to send comments.
13 lines
290 B
Bash
Executable File
13 lines
290 B
Bash
Executable File
#!/bin/sh -
|
|
#
|
|
# $Id$
|
|
#
|
|
# 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
|