Use the right python interpreter in the cron tasks

This commit is contained in:
Martin Pépin 2017-08-08 00:19:47 +01:00
parent 784513b3cc
commit 062f547315
2 changed files with 5 additions and 5 deletions

View file

@ -6,5 +6,5 @@ DBUSER="cof_gestion"
DBNAME="cof_gestion"
DBPASSWD="4KZt3nGPLVeWSvtBZPSM3fSzXpzEU4"
19 */12 * * * date >> /vagrant/rappels.log ; python /vagrant/manage.py sendrappels >> /vagrant/rappels.log 2>&1
*/5 * * * * python /vagrant/manage.py manage_revente >> /vagrant/reventes.log 2>&1
19 */12 * * * date >> /vagrant/rappels.log ; /ubuntu/home/venv/bin/python /vagrant/manage.py sendrappels >> /vagrant/rappels.log 2>&1
*/5 * * * * /ubuntu/home/venv/bin/python /vagrant/manage.py manage_revente >> /vagrant/reventes.log 2>&1

View file

@ -9,9 +9,9 @@ envoie les mails de rappels des spectacles à venir (sauf s'ils ont déjà été
envoyés).
- Un fois toutes les 12 heures me semble bien.
- Penser à utiliser le bon executable python (virtualenvs) et les bonnes
variables d'environnement si besoin.
- Garde les logs peut être une bonne idée.
- Penser à utiliser le bon executable python (virtualenvs) et le bon fichier de
settings pour Django.
- Garder les logs peut être une bonne idée.
Exemple : voir le fichier `provisioning/cron.dev`.