/etc/cron.daily/mixmaster is in mixmaster 3.0.0-4build1.
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 | #!/bin/sh
# Mixmaster update cron job. To be run daily.
# Get configuration
. /etc/mixmaster/network.conf
if [ "$NETWORK" = "permanent" ] && [ -x /usr/bin/mixmaster-update ]; then
su mixmaster -c "/usr/bin/mixmaster-update"
fi
|