From dd0892e208064fa7c308489a2537491b9dcae0ba Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Thu, 19 Sep 2019 19:34:24 -0500 Subject: [PATCH] roles/haproxy: Fix undefined var on Fedora hosts the `haproxy_ssl_default_bind_options` variable is not defined for machines running Fedora, because this parameter is not used in the default configuration file there. --- roles/haproxy/templates/global.cfg.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/haproxy/templates/global.cfg.j2 b/roles/haproxy/templates/global.cfg.j2 index f5f5bda..7865ea9 100644 --- a/roles/haproxy/templates/global.cfg.j2 +++ b/roles/haproxy/templates/global.cfg.j2 @@ -18,6 +18,6 @@ global {% if haproxy_ssl_default_server_ciphers|d %} ssl-default-server-ciphers {{ haproxy_ssl_default_server_ciphers }} {% endif %} -{% if haproxy_ssl_default_bind_options %} +{% if haproxy_ssl_default_bind_options|d %} ssl-default-bind-options {{ haproxy_ssl_default_bind_options }} {% endif %}