From 17a1164b683aeed5bca3f09c88d73786723fe031 Mon Sep 17 00:00:00 2001
From: SciPost tech support <techsupport@scipost.org>
Date: Sun, 20 Sep 2020 04:40:24 +0000
Subject: [PATCH] Update executables for production

---
 cronjobs/cronjob_production_daily.sh      |  6 +++---
 cronjobs/cronjob_production_eachhour.sh   | 10 +++++-----
 cronjobs/cronjob_production_eachminute.sh |  6 +++---
 cronjobs/cronjob_production_sundays.sh    | 10 +++++-----
 cronjobs/cronjob_production_weekdays.sh   |  6 +++---
 cronjobs/cronjob_production_weekly.sh     |  6 +++---
 start_celery.sh                           |  2 +-
 7 files changed, 23 insertions(+), 23 deletions(-)

diff --git a/cronjobs/cronjob_production_daily.sh b/cronjobs/cronjob_production_daily.sh
index ff54e7abc..641625285 100755
--- a/cronjobs/cronjob_production_daily.sh
+++ b/cronjobs/cronjob_production_daily.sh
@@ -2,7 +2,7 @@
 
 # Daily cronjobs for production area
 
-cd /home/scipost/webapps/scipost/scipost_v1
-source venv/bin/activate
+cd /home/scipost/webapps/scipost_py38/SciPost
+source ../venv3.8/bin/activate
 
-python3 manage.py organization_update_cf_nr_associated_publications
+python manage.py organization_update_cf_nr_associated_publications
diff --git a/cronjobs/cronjob_production_eachhour.sh b/cronjobs/cronjob_production_eachhour.sh
index 1cf3f279b..1d819d6f9 100755
--- a/cronjobs/cronjob_production_eachhour.sh
+++ b/cronjobs/cronjob_production_eachhour.sh
@@ -2,12 +2,12 @@
 
 # Per minute cronjobs for production area
 
-cd /home/scipost/webapps/scipost/scipost_v1
-source venv/bin/activate
+cd /home/scipost/webapps/scipost_py38/SciPost
+source ../venv3.8/bin/activate
 
 # Do tasks
-python3 manage.py check_celery
-python3 manage.py update_coi_via_arxiv
+python manage.py check_celery
+python manage.py update_coi_via_arxiv
 
 # Do a update_index of the last hour
-python3 manage.py update_index -r -v 0 -a 1
+python manage.py update_index -r -v 0 -a 1
diff --git a/cronjobs/cronjob_production_eachminute.sh b/cronjobs/cronjob_production_eachminute.sh
index a7db7bdec..c4f340d0a 100755
--- a/cronjobs/cronjob_production_eachminute.sh
+++ b/cronjobs/cronjob_production_eachminute.sh
@@ -2,8 +2,8 @@
 
 # Per minute cronjobs for production area
 
-cd /home/scipost/webapps/scipost/scipost_v1
-source venv/bin/activate
+cd /home/scipost/webapps/scipost_py38/SciPost
+source ../venv3.8/bin/activate
 
 # Mails waiting in the database
-python3 manage.py send_mails
+python manage.py send_mails
diff --git a/cronjobs/cronjob_production_sundays.sh b/cronjobs/cronjob_production_sundays.sh
index 80d4b4e82..4e42fd0bb 100755
--- a/cronjobs/cronjob_production_sundays.sh
+++ b/cronjobs/cronjob_production_sundays.sh
@@ -3,10 +3,10 @@
 # Weekly cronjobs for production area
 # Weekend jobs
 
-cd /home/scipost/webapps/scipost/scipost_v1
-source venv/bin/activate
+cd /home/scipost/webapps/scipost_py38/SciPost
+source ../venv3.8/bin/activate
 
-python3 manage.py update_citedby
+python manage.py update_citedby
 
-# Do a full update_index when maybe something has slipped through during the week somehow..?
-python3 manage.py update_index -r -v 0
+# Do a full update_index when maybe something has slipped through during the week
+python manage.py update_index -r -v 0
diff --git a/cronjobs/cronjob_production_weekdays.sh b/cronjobs/cronjob_production_weekdays.sh
index 791e66344..9636feee1 100755
--- a/cronjobs/cronjob_production_weekdays.sh
+++ b/cronjobs/cronjob_production_weekdays.sh
@@ -2,7 +2,7 @@
 
 # Daily cronjobs for production area
 
-cd /home/scipost/webapps/scipost/scipost_v1
-source venv/bin/activate
+cd /home/scipost/webapps/scipost_py38/SciPost
+source ../venv3.8/bin/activate
 
-python3 manage.py send_refereeing_reminders
+python manage.py send_refereeing_reminders
diff --git a/cronjobs/cronjob_production_weekly.sh b/cronjobs/cronjob_production_weekly.sh
index 861ffa3c1..b539f6898 100755
--- a/cronjobs/cronjob_production_weekly.sh
+++ b/cronjobs/cronjob_production_weekly.sh
@@ -2,7 +2,7 @@
 
 # Weekly cronjobs for production area
 
-cd /home/scipost/webapps/scipost/scipost_v1
-source venv/bin/activate
+cd /home/scipost/webapps/scipost_py38/SciPost
+source ../venv3.8/bin/activate
 
-python3 manage.py email_fellows_tasklist
+python manage.py email_fellows_tasklist
diff --git a/start_celery.sh b/start_celery.sh
index a8caa9ad9..380d2c072 100755
--- a/start_celery.sh
+++ b/start_celery.sh
@@ -1,7 +1,7 @@
 #!/bin/bash
 pkill -f bin/celery
 
-cd /home/scipost/webapps/scipost/scipost_v1 && source venv/bin/activate
+cd /home/scipost/webapps/scipost_py38/SciPost && source ../venv3.8/bin/activate
 
 mkdir -p ./local_files/logs
 touch ./local_files/logs/celery_worker.log
-- 
GitLab