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.
jenkins-master
Dustin 2019-09-19 19:34:24 -05:00
parent 1b32a28dd8
commit dd0892e208
1 changed files with 1 additions and 1 deletions

View File

@ -18,6 +18,6 @@ global
{% if haproxy_ssl_default_server_ciphers|d %} {% if haproxy_ssl_default_server_ciphers|d %}
ssl-default-server-ciphers {{ haproxy_ssl_default_server_ciphers }} ssl-default-server-ciphers {{ haproxy_ssl_default_server_ciphers }}
{% endif %} {% endif %}
{% if haproxy_ssl_default_bind_options %} {% if haproxy_ssl_default_bind_options|d %}
ssl-default-bind-options {{ haproxy_ssl_default_bind_options }} ssl-default-bind-options {{ haproxy_ssl_default_bind_options }}
{% endif %} {% endif %}