AlternC/debian/alternc.cron.d

37 lines
1.3 KiB
D
Raw Normal View History

# Create /var/run/ folder : it may be a ramdrive
@reboot root mkdir -p /var/run/alternc && chown alterncpanel:alterncpanel /var/run/alternc
2012-08-21 18:25:56 +00:00
# Every 2 days compress log files
0 4 * * * alterncpanel /usr/lib/alternc/compress_logs.sh
2012-08-21 18:25:56 +00:00
# Suppress log files older than one year
0 4 * * * alterncpanel /usr/lib/alternc/delete_logs.sh
2012-08-21 18:25:56 +00:00
# Every day at 5am and every week at 4am, make requested SQL backups
0 5 * * * alterncpanel /usr/lib/alternc/sqlbackup.sh -t daily
0 4 * * 0 alterncpanel /usr/lib/alternc/sqlbackup.sh -t weekly
# Every 5 minutes, spool waiting domain changes
*/5 * * * * root /usr/lib/alternc/update_domains.sh
2012-08-26 09:26:04 +00:00
# Every 5 minutes, do mails actions
*/5 * * * * root /usr/lib/alternc/update_mails.sh
2012-08-25 10:35:23 +00:00
# Every hour, check for slave_dns refreshes
5 * * * * root /usr/lib/alternc/slave_dns
# Every day at 2am, compute web, mail and db space usage per account.
# You may put this computing every week only or on your filer on busy services.
0 2 * * * alterncpanel /usr/lib/alternc/spoolsize.php 2>&1 > /dev/null
# Once a week at 7am, optimise the AlternC database
0 1 * * 7 alterncpanel /usr/lib/alternc/alternc-dboptimize
# Every 30 minutes, do cron_users actions
00,30 * * * * alterncpanel /usr/lib/alternc/cron_users.sh
2013-04-22 14:45:45 +00:00
# Every 20 minutes, do actions
00,20 * * * * root /usr/lib/alternc/do_actions.php