Преглед изворни кода

Merge pull request #378 from mrichar1/extra_config

Handle other non-iterable values like int/float.
master
Niels Abspoel пре 6 година
родитељ
комит
d87d858a87
No account linked to committer's email address
1 измењених фајлова са 3 додато и 3 уклоњено
  1. +3
    -3
      salt/files/minion.d/f_defaults.conf

+ 3
- 3
salt/files/minion.d/f_defaults.conf Прегледај датотеку

@@ -1255,13 +1255,13 @@ alternative.mongo.{{ name }}: {{ value }}

{%- for configname in cfg_minion %}
{%- if configname not in reserved_keys and configname not in default_keys %}
{%- if cfg_minion[configname] is string %}
{{ configname }}: {{ cfg_minion[configname]|json }}
{%- elif cfg_minion[configname] is iterable %}
{%- if cfg_minion[configname] is iterable and cfg_minion[configname] is not string %}
{{ configname }}:
{%- for item in cfg_minion[configname] %}
- {{ item }}
{%- endfor -%}
{%- else %}
{{ configname }}: {{ cfg_minion[configname]|json }}
{%- endif %}
{%- endif %}
{%- endfor %}

Loading…
Откажи
Сачувај