# Create /var/run/ folder : it may be a ramdrive @reboot root mkdir -p /var/run/alternc && chown alterncpanel:alterncpanel /var/run/alternc # Every 2 days compress log files 0 4 * * * alterncpanel /usr/lib/alternc/compress_logs.sh # Suppress log files older than one year 0 4 * * * alterncpanel /usr/lib/alternc/delete_logs.sh # 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 # Every 5 minutes, do mails actions */5 * * * * root /usr/lib/alternc/update_mails.sh # 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 # 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 # Every hour, stop expired VMs 10 * * * * alterncpanel /usr/lib/alternc/lxc_stopexpired.php