From 78aab2629565da82540fca52acd2b1c05c20f43a Mon Sep 17 00:00:00 2001 From: Viktor Michalek Date: Tue, 1 Oct 2019 14:12:42 +0200 Subject: [PATCH] Haproxy: fix haproxy_cmd for Debian Change-Id: I097082112b857444c3e2f73896be5832a776743b --- ansible/roles/haproxy/templates/haproxy_run.sh.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/roles/haproxy/templates/haproxy_run.sh.j2 b/ansible/roles/haproxy/templates/haproxy_run.sh.j2 index 9419e70e67..6c2e1feef0 100644 --- a/ansible/roles/haproxy/templates/haproxy_run.sh.j2 +++ b/ansible/roles/haproxy/templates/haproxy_run.sh.j2 @@ -1,5 +1,5 @@ #!/bin/bash -x -{% set haproxy_cmd='/usr/sbin/haproxy -W -db' if kolla_base_distro in ['ubuntu'] else '/usr/sbin/haproxy-systemd-wrapper' %} +{% set haproxy_cmd='/usr/sbin/haproxy -W -db' if kolla_base_distro in ['debian', 'ubuntu'] else '/usr/sbin/haproxy-systemd-wrapper' %} # We need to run haproxy with one `-f` for each service, because including an # entire config directory was not a feature until version 1.7 of HAProxy.