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.
This commit is contained in:
@@ -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 %}
|
||||
|
||||
Reference in New Issue
Block a user