瀏覽代碼

Merge pull request #378 from mrichar1/extra_config

Handle other non-iterable values like int/float.
master
Niels Abspoel 6 年之前
父節點
當前提交
d87d858a87
沒有連結到貢獻者的電子郵件帳戶。
共有 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…
取消
儲存