Ver código fonte

fixed ext_pillar

tags/v0.57.0
Kenneth Wilke 11 anos atrás
pai
commit
426493b76d
1 arquivos alterados com 4 adições e 4 exclusões
  1. +4
    -4
      salt/files/master

+ 4
- 4
salt/files/master Ver arquivo

@@ -435,13 +435,13 @@ pillar_roots:

{% if 'ext_pillar' in master -%}
ext_pillar:
{% for name, args in master['ext_pillar'].items() -%}
- {{ name }}: {{ args }}
{% for pillar in master['ext_pillar'] %}
- {{ pillar }}
{% endfor -%}
{% elif 'ext_pillar' in salt -%}
ext_pillar:
{% for name, args in salt['ext_pillar'].items() -%}
- {{ name }}: {{ args }}
{% for pillar in salt['ext_pillar'] %}
- {{ pillar }}
{% endfor -%}
{% else %}
# ext_pillar:

Carregando…
Cancelar
Salvar