* feat: tasks for generate_idnits2_rfc* mgmt cmds * chore: create periodic tasks * chore: remove mgmt cmds from bin/hourly * test: test new tasks * chore: remove now-unused scripts * refactor: unitize Idnits2SupportTests
38 lines
1 KiB
Bash
Executable file
38 lines
1 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# Hourly 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
|
|
|
|
# Make sure we stop if something goes wrong:
|
|
program=${0##*/}
|
|
trap 'echo "$program($LINENO): Command failed with error code $? ([$$] $0 $*)"; exit 1' ERR
|
|
|
|
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/hourly"
|
|
|
|
# Generate some static files
|
|
ID=/a/ietfdata/doc/draft/repository
|
|
DERIVED=/a/ietfdata/derived
|
|
DOWNLOAD=/a/www/www6s/download
|
|
|
|
CHARTER=/a/www/ietf-ftp/charter
|
|
wget -q https://datatracker.ietf.org/wg/1wg-charters-by-acronym.txt -O $CHARTER/1wg-charters-by-acronym.txt
|
|
wget -q https://datatracker.ietf.org/wg/1wg-charters.txt -O $CHARTER/1wg-charters.txt
|
|
|
|
# Regenerate the last week of bibxml-ids
|
|
$DTDIR/ietf/manage.py generate_draft_bibxml_files
|
|
|
|
# Create and update group wikis
|
|
#$DTDIR/ietf/manage.py create_group_wikis
|
|
|
|
# exit 0
|