Merge pull request #59 from mikesager/fix_backend_extra_trimming
haproxy.jinja bugfix: backend.extra array trimming
This commit is contained in:
commit
39390e8618
1 changed files with 3 additions and 1 deletions
|
@ -551,7 +551,9 @@ backend {{ backend.get('name', backend_name) }}
|
||||||
{%- if backend.extra is string %}
|
{%- if backend.extra is string %}
|
||||||
{{ backend.extra }}
|
{{ backend.extra }}
|
||||||
{%- else %}
|
{%- else %}
|
||||||
{%- for line in backend.extra %} {{ line }} {%- endfor %}
|
{%- for line in backend.extra %}
|
||||||
|
{{ line }}
|
||||||
|
{%- endfor %}
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
{%- if 'defaultserver' in backend %}
|
{%- if 'defaultserver' in backend %}
|
||||||
|
|
Loading…
Reference in a new issue