First round of updates for Debian base.

This commit is contained in:
Darren 'Tadgy' Austin 2025-11-08 19:08:51 +00:00
commit 069d99da13
123 changed files with 871 additions and 4163 deletions

8
etc/crontab Normal file
View file

@ -0,0 +1,8 @@
# do daily/weekly/monthly maintenance
# min hour day month weekday user command
0,15,30,45 * * * * root cd / && [ -d /etc/cron.15min ] && run-parts --report /etc/cron.15min
0 * * * * root cd / && [ -d /etc/cron.hourly ] && run-parts --report /etc/cron.hourly
0 0 * * * root cd / && [ -d /etc/cron.daily ] && run-parts --report /etc/cron.daily
0 0 * * 6 root cd / && [ -d /etc/cron.weekly ] && run-parts --report /etc/cron.weekly
0 0 1 * * root cd / && [ -d /etc/cron.monthly ] && run-parts --report /etc/cron.monthly
0 0 1 1 * root cd / && [ -d /etc/cron.yearly ] && run-parts --report /etc/cron.yearly