From 927d01fd013dc6441cf9d8a8fcc32eb5fa14241e Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Mon, 7 Nov 2016 18:39:24 +0000 Subject: [PATCH] Point at the new virtualenv location in the cron runners. - Legacy-Id: 12277 --- bin/daily | 2 +- bin/hourly | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/bin/daily b/bin/daily index 02ff589c7..8bbcc3248 100755 --- a/bin/daily +++ b/bin/daily @@ -16,7 +16,7 @@ cd $DTDIR/ logger -p user.info -t cron "Running $DTDIR/bin/daily" # Set up the virtual environment -source $DTDIR/bin/activate +source $DTDIR/env/bin/activate # Populate the yang repositories $DTDIR/ietf/manage.py populate_yang_model_dirs diff --git a/bin/hourly b/bin/hourly index f2baaee30..e73a51a8f 100755 --- a/bin/hourly +++ b/bin/hourly @@ -10,7 +10,7 @@ DTDIR=/a/www/ietf-datatracker/web cd $DTDIR/ # Set up the virtual environment -source $DTDIR/bin/activate +source $DTDIR/env/bin/activate logger -p user.info -t cron "Running $DTDIR/bin/hourly" @@ -66,4 +66,7 @@ mv $TMPFILE5 $DOWNLOAD/id-index.txt mv $TMPFILE6 $DOWNLOAD/id-abstract.txt mv $TMPFILE7 $ID/all_id2.txt +# Create and update group wikis +$DTDIR/ietf/manage.py create_group_wikis + # exit 0