* chore: Remove notify-expirations from bin/weekly * chore: Remove idindex_update from bin/hourly * chore: Remove rfc-editor-index-updates from bin/daily * chore: Remove rfc-editor-index-updates from bin/every15m * chore: Remove celerized tasks from bin/daily * ietf/bin/expire-ids * ietf/manage.py send_reminders * ietf/manage.py fetch_meeting_attendance * chore: Remove send-scheduled-mail from every15m Leaves an empty shell of a script... * chore: Remove iana-*-updates from bin/hourly
23 lines
441 B
Bash
Executable file
23 lines
441 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Weekly datatracker jobs.
|
|
#
|
|
# This script is expected to be triggered by cron from
|
|
# /etc/cron.d/datatracker
|
|
export LANG=en_US.UTF-8
|
|
export PYTHONIOENCODING=utf-8
|
|
|
|
DTDIR=/a/www/ietf-datatracker/web
|
|
cd $DTDIR/
|
|
|
|
# Set up the virtual environment
|
|
source $DTDIR/env/bin/activate
|
|
|
|
logger -p user.info -t cron "Running $DTDIR/bin/weekly"
|
|
|
|
|
|
# Send out weekly summaries of apikey usage
|
|
|
|
$DTDIR/ietf/manage.py send_apikey_usage_emails
|
|
|