Exemplo n.º 1
0
    def install(self):
        # Expand user in static root location
        self.dvars['japper']['static_root'] = op.expanduser(
            self.dvars['japper']['static_root']
        )

        # Copy configuration files
        for src, dst_path in self.conf_files:
            src = op.join('deploy', src)
            dst_parts = dst_path.split('.')
            dst = self.dvars
            while dst_parts:
                part = dst_parts.pop(0)
                try:
                    dst = dst[part]
                except KeyError:
                    raise ValueError('deployment variable not found "%s"' %
                                     dst_path)
            dst_dir = op.dirname(dst)
            if not op.isdir(dst_dir):
                sudo('mkdir', dst_dir)
            context = self.get_config_context()
            render_template(src, dst, context=context, use_jinja=True,
                            use_sudo=True)

        # Collect static files
        self.venv.run('python', 'manage.py', 'collectstatic', '--noinput',
                      env={'STATIC_ROOT': self.dvars['japper']['static_root']})

        # Run migrations
        self.venv.run('python', 'manage.py', 'migrate', '--noinput')
Exemplo n.º 2
0
    def install(self):
        # Expand user in static root location
        self.dvars['japper']['static_root'] = op.expanduser(
                self.dvars['japper']['static_root'])

        # Copy configuration files
        for src, dst_path in self.conf_files:
            src = op.join('deploy', src)
            dst_parts = dst_path.split('.')
            dst = self.dvars
            while dst_parts:
                part = dst_parts.pop(0)
                try:
                    dst = dst[part]
                except KeyError:
                    raise ValueError('deployment variable not found "%s"' %
                            dst_path)
            dst_dir = op.dirname(dst)
            if not op.isdir(dst_dir):
                sudo('mkdir', dst_dir)
            context = self.get_config_context()
            render_template(src, dst, context=context, use_jinja=True,
                    use_sudo=True)

        # Collect static files
        self.venv.run('python', 'manage.py', 'collectstatic', '--noinput',
                env={'STATIC_ROOT': self.dvars['japper']['static_root']})

        # Run migrations
        self.venv.run('python', 'manage.py', 'migrate', '--noinput')
Exemplo n.º 3
0
 def post_install(self):
     self.restart_backend_process()
     # Create nginx symlink and reload
     nginx_conf_file = self.dvars['nginx']['conf_file']
     nginx_conf_basename = op.basename(nginx_conf_file)
     nginx_conf_symlink = op.join('/etc/nginx/sites-enabled',
                                  nginx_conf_basename)
     sudo('ln', '-sfn', nginx_conf_file, nginx_conf_symlink)
     sudo('/etc/init.d/nginx', 'reload')
Exemplo n.º 4
0
 def post_install(self):
     self.restart_backend_process()
     # Create nginx symlink and reload
     nginx_conf_file = self.dvars['nginx']['conf_file']
     nginx_conf_basename = op.basename(nginx_conf_file)
     nginx_conf_symlink = op.join('/etc/nginx/sites-enabled',
             nginx_conf_basename)
     sudo('ln', '-sfn', nginx_conf_file, nginx_conf_symlink)
     sudo('/etc/init.d/nginx', 'reload')
Exemplo n.º 5
0
 def restart_backend_process(self):
     sudo('supervisorctl', 'update')
     # Gracefuly restart web backend
     reload_file = '/tmp/%s.reload' % self.dvars['supervisord']['web_proc_name']
     sudo('touch', reload_file)
     # Restart celery processes
     sudo('supervisorctl', 'restart',
             self.dvars['supervisord']['celery_worker_proc_name'],
             self.dvars['supervisord']['celery_beat_proc_name'])