2
0
mirror of https://github.com/frappe/bench.git synced 2025-01-09 08:30:39 +00:00

fix setup production

This commit is contained in:
Pratik Vyas 2014-11-04 18:14:23 +05:30
parent 2509347b4d
commit 3c8de42f51

View File

@ -29,7 +29,7 @@ def setup_production(bench='.'):
generate_nginx_config(bench=bench)
remove_default_nginx_configs()
if os.path.exists('/etc/redhat-release') and get_cmd_output("cat /etc/redhat-release | sed 's/Linux\ //g' | cut -d" " -f3 | cut -d. -f1") == '7':
if os.path.exists('/etc/redhat-release') and get_cmd_output("cat /etc/redhat-release | sed 's/Linux\ //g' | cut -d' ' -f3 | cut -d. -f1") == '7':
supervisor_conf_filename = 'frappe.ini'
else:
supervisor_conf_filename = 'frappe.conf'