X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/ae60b2a3949e96357477cc04f90fd0873cee8a92..c2575aff8fd9380959491d461d93e4a697541519:/fabfile.py diff --git a/fabfile.py b/fabfile.py index a9e621d78..26ec7c720 100644 --- a/fabfile.py +++ b/fabfile.py @@ -10,6 +10,28 @@ except ImportError: env.project_name = 'wolnelektury' +class ManageTask(Task): + def __init__(self, name, params='', **kwargs): + super(ManageTask, self).__init__(**kwargs) + self.name = name + self.params = params + + def run(self): + require('app_path', 'project_name') + with cd(get_django_root_path('current')): + run('source %(ve)s/bin/activate && python manage.py %(task)s %(params)s' % { + 've': env.ve, + 'task': self.name, + 'params': self.params, + }, pty=True) + + +class Memcached(Service): + def run(self): + print '>>> memcached: restart' + sudo('/etc/init.d/memcached restart', shell=False) + + @task def production(): env.hosts = ['giewont.icm.edu.pl'] @@ -17,26 +39,17 @@ def production(): env.app_path = '/srv/wolnelektury.pl' env.django_root_path = 'src' env.requirements_file = 'requirements/requirements.txt' + env.pre_collectstatic = [ + ManageTask('update_counters'), + ManageTask('localepack', '-c'), + ] env.services = [ Supervisord('wolnelektury'), Supervisord('wolnelektury.celery'), + Memcached(), ] -def update_counters(): - print '>>> updating counters' - require('app_path', 'project_name') - with cd(get_django_root_path('current')): - run('%(ve)s/bin/python manage.py update_counters' % env, pty=True) - - -def compile_messages(): - print '>>> compiling messages' - require('app_path', 'project_name') - with cd(get_django_root_path('current')): - run('source %(ve)s/bin/activate && python manage.py localepack -c' % env, pty=True) - - @task def beta(): env.hosts = ['giewont.icm.edu.pl'] @@ -46,8 +59,8 @@ def beta(): env.django_root_path = 'src' env.requirements_file = 'requirements/requirements.txt' env.pre_collectstatic = [ - update_counters, - compile_messages, + ManageTask('update_counters'), + ManageTask('localepack', '-c'), ] env.services = [ Supervisord('beta'),