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
parent
1b32a28dd8
commit
dd0892e208
|
@ -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 %}
|
||||||
|
|
Loading…
Reference in New Issue