Bladeren bron

Merge pull request #42 from westurner/fix-nested-_roots

Fix for nested [file|pillar]_roots in minion tmpl (seeAlso: #37)
tags/v0.57.0
Seth House 10 jaren geleden
bovenliggende
commit
6c0cc53d5c
2 gewijzigde bestanden met toevoegingen van 24 en 24 verwijderingen
  1. +2
    -2
      salt/files/master
  2. +22
    -22
      salt/files/minion

+ 2
- 2
salt/files/master Bestand weergeven

@@ -521,9 +521,9 @@ pillar_roots:
{%- endfor -%}
{% elif 'pillar_roots' in salt -%}
pillar_roots:
{%- for name, roots in salt['pillar_roots'].items() -%}
{%- for name, roots in salt['pillar_roots']|dictsort %}
{{ name }}:
{%- for dir in roots -%}
{%- for dir in roots %}
- {{ dir }}
{%- endfor -%}
{%- endfor -%}

+ 22
- 22
salt/files/minion Bestand weergeven

@@ -404,20 +404,20 @@ id: {{ minion['id'] }}
#
{% if 'file_roots' in minion -%}
file_roots:
{% for name, roots in minion['file_roots'].items() -%}
{%- for name, roots in minion['file_roots']|dictsort %}
{{ name }}:
{% for dir in roots -%}
- {{ dir }}
{% endfor -%}
{% endfor -%}
{%- for dir in roots %}
- {{ dir }}
{%- endfor -%}
{%- endfor -%}
{% elif 'file_roots' in salt -%}
file_roots:
{% for name, roots in salt['file_roots'].items() -%}
{%- for name, roots in salt['file_roots']|dictsort %}
{{ name }}:
{% for dir in roots -%}
- {{ dir }}
{% endfor -%}
{% endfor -%}
{%- for dir in roots %}
- {{ dir }}
{%- endfor -%}
{%- endfor -%}
{% else -%}
#file_roots:
# base:
@@ -444,24 +444,24 @@ file_roots:
# also be configured on the minion:
{% if 'pillar_roots' in minion -%}
pillar_roots:
{% for name, roots in minion['pillar_roots'].items() -%}
{%- for name, roots in minion['pillar_roots']|dictsort %}
{{ name }}:
{% for dir in roots -%}
- {{ dir }}
{% endfor -%}
{% endfor -%}
{%- for dir in roots %}
- {{ dir }}
{%- endfor -%}
{%- endfor -%}
{% elif 'pillar_roots' in salt -%}
pillar_roots:
{% for name, roots in salt['pillar_roots'].items() -%}
{%- for name, roots in salt['pillar_roots']|dictsort %}
{{ name }}:
{% for dir in roots -%}
- {{ dir }}
{% endfor -%}
{% endfor -%}
{% else %}
{%- for dir in roots %}
- {{ dir }}
{%- endfor -%}
{%- endfor -%}
{% else -%}
#pillar_roots:
# base:
# - /srv/pillar
# - /srv/salt
{%- endif %}

###### Security settings #####

Laden…
Annuleren
Opslaan