/etc/cron.daily/uucp is in uucp 1.07-23.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 | #!/bin/sh
#
# Every day generate reports and expire old jobs.
# see /etc/uucp/expire for configuration of job expiry.
#
if [ -x /usr/lib/uucp/uudemon.day ]; then
su uucp -s /bin/sh -c "/usr/lib/uucp/uudemon.day root"
fi
|