From e8b539da0dc2d74c67da16616592d8b0aa88dfa4 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Tue, 11 Feb 2020 15:44:16 +0100 Subject: [PATCH] Fix supervisorctl invocations --- fabfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fabfile.py b/fabfile.py index 63f98d3..d1f0014 100644 --- a/fabfile.py +++ b/fabfile.py @@ -8,7 +8,7 @@ def doesitsparkjoy(c): print('Releasing doesitsparkjoy.voicegardens.org ...') with c.cd('/var/www/doesitsparkjoy.voicegardens.org'): c.run('git pull origin master') - c.run('sudo supervisorctl restart doesitsparkjoy') + c.run('sudo supervisorctl restart apps:doesitsparkjoy') c.run('sudo systemctl restart nginx') c.run('sh bin/clear-archives') c.run('sh bin/copy-fixed-archive') @@ -20,7 +20,7 @@ def voicegardens(c): print('Releasing voicegardens.org ...') with c.cd('/var/www/voicegardens.org'): c.run('git pull origin master') - c.run('sudo supervisorctl restart voicegardens') + c.run('sudo supervisorctl restart apps:voicegardens') c.run('sudo systemctl restart nginx') c.run('sh bin/clear-archives') c.run('sh bin/copy-fixed-archive')