2
0

Merge pull request #378 from mrichar1/extra_config

Handle other non-iterable values like int/float.
This commit is contained in:
Niels Abspoel 2018-07-02 11:12:05 +02:00 committed by GitHub
commit d87d858a87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1255,13 +1255,13 @@ alternative.mongo.{{ name }}: {{ value }}
{%- for configname in cfg_minion %} {%- for configname in cfg_minion %}
{%- if configname not in reserved_keys and configname not in default_keys %} {%- if configname not in reserved_keys and configname not in default_keys %}
{%- if cfg_minion[configname] is string %} {%- if cfg_minion[configname] is iterable and cfg_minion[configname] is not string %}
{{ configname }}: {{ cfg_minion[configname]|json }}
{%- elif cfg_minion[configname] is iterable %}
{{ configname }}: {{ configname }}:
{%- for item in cfg_minion[configname] %} {%- for item in cfg_minion[configname] %}
- {{ item }} - {{ item }}
{%- endfor -%} {%- endfor -%}
{%- else %}
{{ configname }}: {{ cfg_minion[configname]|json }}
{%- endif %} {%- endif %}
{%- endif %} {%- endif %}
{%- endfor %} {%- endfor %}