2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-23 04:29:02 +00:00

Skip nginx restart on env var NO_SERVICE_RESTART

This commit is contained in:
Pratik Vyas 2015-09-01 15:43:34 -07:00
parent b594c3334d
commit fcf8cf34b8

View File

@ -64,4 +64,6 @@ def setup_production(user, bench='.'):
os.symlink(os.path.abspath(os.path.join(bench, 'config', 'supervisor.conf')), os.path.join(get_supervisor_confdir(), supervisor_conf_filename))
os.symlink(os.path.abspath(os.path.join(bench, 'config', 'nginx.conf')), '/etc/nginx/conf.d/frappe.conf')
exec_cmd('supervisorctl reload')
if os.environ.get('NO_SERVICE_RESTART'):
return
restart_service('nginx')