0a54a0549a
PR: bin/7749 Submitted by: Ruslan Ermilov <ru@ucb.crimea.ua>
15 lines
319 B
Bash
Executable File
15 lines
319 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $Id: 340.uucp,v 1.2 1997/08/17 17:55:32 pst Exp $
|
|
#
|
|
# Local cleanup of UUCP files. This is for backwards compatibility,
|
|
# /etc/uuclean.daily doesn't exist by default.
|
|
#
|
|
if [ -d /var/spool/uucp -a -f /etc/uuclean.daily ]; then
|
|
echo ""
|
|
echo "Cleaning up UUCP:"
|
|
|
|
echo /etc/uuclean.daily | su -m uucp
|
|
fi
|
|
|