Adjustment in the HAProxy conf.d
This commit is contained in:
parent
aafa0bcae6
commit
089d4434d9
2 changed files with 5 additions and 3 deletions
|
|
@ -121,7 +121,9 @@ class DaemonizeHAProxy:
|
|||
self.thread.start()
|
||||
|
||||
def get_haproxy_command(self, action):
|
||||
custom_config_files = " ".join(["-f %s" % (file) for file in self.get_custom_config_files()])
|
||||
custom_config_files = ""
|
||||
if len(list(self.get_custom_config_files().keys())) != 0:
|
||||
custom_config_files = "-f %s" % (self.custom_config_folder)
|
||||
|
||||
if action == "start":
|
||||
return "/usr/sbin/haproxy -W -f /etc/haproxy/haproxy.cfg %s -p /run/haproxy.pid -S /var/run/haproxy.sock" % (custom_config_files)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue