X-Git-Url: https://git.mdrn.pl/fnpdjango.git/blobdiff_plain/e72e716a3a7088b07e5b2f3af87fe5a18adfbb64..34b069d8817145eea3ac8fbe432a1ac70d268c67:/fnpdjango/deploy/__init__.py diff --git a/fnpdjango/deploy/__init__.py b/fnpdjango/deploy/__init__.py index f47790d..cd3c579 100644 --- a/fnpdjango/deploy/__init__.py +++ b/fnpdjango/deploy/__init__.py @@ -37,7 +37,7 @@ def setup(): if not files.exists(env.app_path): run('mkdir -p %(app_path)s' % env, pty=True) with cd(env.app_path): - for subdir in 'releases', 'packages', 'log': + for subdir in 'releases', 'packages', 'log', 'samples': if not files.exists(subdir): run('mkdir -p %s' % subdir, pty=True) with cd('%(app_path)s/releases' % env): @@ -151,6 +151,20 @@ class Supervisord(Service): print '>>> supervisord: restart %s' % self.name sudo('supervisorctl restart %s' % self.name, shell=False) +class Command(Task): + def __init__(self, commands, working_dir): + if not hasattr(commands, '__iter__'): + commands = [commands] + self.name = 'Command: %s @ %s' % (commands, working_dir) + self.commands = commands + self.working_dir = working_dir + + def run(self): + require('app_path') + with cd(join('%(app_path)s/releases/current' % env, self.working_dir)): + for command in self.commands: + run(command) + def upload_samples(): upload_localsettings_sample() upload_nginx_sample() @@ -159,7 +173,7 @@ def upload_samples(): def upload_sample(name): require('app_path', 'project_name') - upload_path = '%(app_path)s/' % env + name + '.sample' + upload_path = '%(app_path)s/samples/' % env + name + '.sample' if files.exists(upload_path): return print '>>> upload %s template' % name