/etc/cron.weekly/mini-buildd is in mini-buildd 1.0.5.
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 -e
# Restarting mini-buildd will run all do due maintenance checks
# (most importantly chroot maintenance).
#
# This cronjob makes sure this is done automatically once a week
# as long as there is no better/internal solution.
if /etc/init.d/mini-buildd status >/dev/null 2>&1; then
/etc/init.d/mini-buildd restart >/dev/null
fi
|