]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - config/cron/crontab
9b08f06c40b0609a3629538936757342aac89a8b
[people/pmueller/ipfire-2.x.git] / config / cron / crontab
1 #
2 # $Id: crontab,v 1.9.2.5 2005/08/16 05:39:23 gespinasse Exp $
3 #
4 SHELL=/bin/bash
5 PATH=/sbin:/bin:/usr/sbin:/usr/bin
6 MAILTO=root
7 HOME=/
8
9 # Log rotation
10 01 * * * * /usr/sbin/logrotate /etc/logrotate.conf
11
12 # Set time
13 */5 * * * * /usr/local/bin/timecheck > /dev/null 2>&1
14
15 # Summarize ip accounting info:
16 2 1 * * * /usr/sbin/ipacsum -r -H `/bin/hostname` -t "the day 2 days ago" >/dev/null
17 3 1 * * 0 /usr/sbin/ipacsum -r -H `/bin/hostname` -t "the week 4 weeks ago" >/dev/null
18 4 1 1 2 * /usr/sbin/ipacsum -r -H `/bin/hostname` -t "the year 2 years ago" >/dev/null
19
20 # Make some nice graphs
21 */5 * * * * /usr/local/bin/makegraphs >/dev/null
22
23 # Force update the dynamic dns registration once a week
24 # Force update even if IP has not changed once a month if 'minimize update' selected in GUI
25 # to avoid account declared as dead
26 */5 * * * * [ -f "/var/ipfire/red/active" ] && /usr/local/bin/setddns.pl
27 9 2 * * 0 [ -f "/var/ipfire/red/active" ] && /usr/local/bin/setddns.pl -f
28 3 2 1 * * [ -f "/var/ipfire/red/active" ] && /usr/local/bin/setddns.pl -f -m
29
30 # Logwatch
31 01 0 * * * /usr/local/bin/logwatch > /var/log/logwatch/`date -I -d yesterday`; \
32 LOGWATCH_KEEP=$(sed -ne 's/^LOGWATCH_KEEP=\([0-9]\+\)$/\1/p' /var/ipfire/logging/settings); \
33 find /var/log/logwatch/ -ctime +${LOGWATCH_KEEP=56} -exec rm -f '{}' ';'
34
35 # hddshutdown
36 00 * * * * /usr/local/bin/hddshutdown >/dev/null