From: zuber Date: Tue, 6 Oct 2009 15:55:07 +0000 (+0200) Subject: Dodanie restartowania serwera do fabfile. X-Git-Url: https://git.mdrn.pl/redakcja.git/commitdiff_plain/f53e407d37ef0c786b280e6bc1b2f3dcace714a7?ds=inline;hp=-c Dodanie restartowania serwera do fabfile. --- f53e407d37ef0c786b280e6bc1b2f3dcace714a7 diff --git a/fabfile.py b/fabfile.py index 1cf26790..39b95822 100644 --- a/fabfile.py +++ b/fabfile.py @@ -2,10 +2,17 @@ from fabric.api import run, env, cd def staging(): '''Add staging server to hosts''' - env.hosts += ['platforma@stigma.nowoczesnapolska.org.pl:2222'] + env.hosts = ['platforma@stigma.nowoczesnapolska.org.pl:2222'] + env.project_dir = '/home/platforma/platforma' def deploy(): '''Deploy server''' - with cd('platforma'): + with cd(env.project_dir): run('git pull') run('./project/manage.py syncdb') + restart_server() + +def restart_server(): + with cd(env.project_dir): + run('touch project/dispatch.wsgi') +