-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrontab
24 lines (18 loc) · 963 Bytes
/
crontab
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Monthly
0 0 1 * * root /scripts/scheduled-events/run.php cron.monthly >/var/log/cron.log 2>&
# Weekly
0 0 * * 0 root /scripts/scheduled-events/run.php cron.weekly >/var/log/cron.log 2>&1
# Daily
0 0 * * * root /scripts/scheduled-events/run.php cron.daily >/var/log/cron.log 2>&1
# 12 Hourly
0 */12 * * * root /scripts/scheduled-events/run.php cron.12hourly >/var/log/cron.log 2>&1
# 6 Hourly
0 */6 * * * root /scripts/backupDB.sh >/var/log/cron.log 2>&1
0 */6 * * * root /scripts/backupBindData.sh >/var/log/cron.log 2>&1
0 */6 * * * root /scripts/scheduled-events/run.php cron.6hourly >/var/log/cron.log 2>&1
# Hourly
0 * * * * root /scripts/statuscake-updater/run.php >/var/log/cron.log 2>&1
0 * * * * root /scripts/scheduled-events/run.php cron.hourly >/var/log/cron.log 2>&1
# Every Minute
* * * * * root /scripts/gather-statistics/run.php >/var/log/cron.log 2>&1
* * * * * root /scripts/scheduled-events/run.php cron.minutely >/var/log/cron.log 2>&1