-
Notifications
You must be signed in to change notification settings - Fork 0
/
gregor_apps.cron
18 lines (13 loc) · 1.01 KB
/
gregor_apps.cron
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# GREGOR_APPS crontab - maintained in git gregor_apps.cron
# Send errors to gregorweb email
MAILTO="[email protected]"
# nightly except sunday at 02:00
0 2 * * MON-SAT . /var/www/django/gregor_apps/gregor-apps-activate.sh; python manage.py run_anvil_audit --email [email protected] --errors-only >> cron.log
# sunday night at 02:00
0 2 * * SUN . /var/www/django/gregor_apps/gregor-apps-activate.sh; python manage.py run_anvil_audit --email [email protected] >> cron.log
# Nightly user data audit
0 3 * * * . /var/www/django/gregor_apps/gregor-apps-activate.sh; python manage.py sync-drupal-data --update --email [email protected] >> cron.log
# Nightly upload workspace audit
0 3 * * * . /var/www/django/gregor_apps/gregor-apps-activate.sh; python manage.py run_upload_workspace_audit --email [email protected] >> cron.log
# Nightly combined workspace audit
0 3 * * * . /var/www/django/gregor_apps/gregor-apps-activate.sh; python manage.py run_combined_workspace_audit --email [email protected] >> cron.log