make the cronjob called 00webalizer, so that it runs before everything else
crontab -e allows each user to make own cron file
- 1-59: minute
- 0-23: hour
- 1-31: day of month
- 0 3 1-31/2 * * root /etc/rsync.daily 1
- odd days
- 0 3 2-31/2 * * root /etc/rsync.daily 2
- even days
- 1-12: month
- day of week: 0 or 7 is sunday, or use names
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
HOME=/
# run-parts
01 * * * * root run-parts /etc/cron.hourly
02 4 * * * root run-parts /etc/cron.daily
22 4 * * 0 root run-parts /etc/cron.weekly
42 4 1 * * root run-parts /etc/cron.monthly
return to top