Browse Source

Improved jinja spacing in template

This will make the _defaults.conf file for master and minion
better by removing some empty lines in some code blocks
tags/v0.57.0
Niels Abspoel 10 years ago
parent
commit
4b0ec5dc01
1 changed files with 12 additions and 12 deletions
  1. +12
    -12
      salt/files/minion.d/_defaults.conf

+ 12
- 12
salt/files/minion.d/_defaults.conf View File

# exist in that repo as *local* refs. # exist in that repo as *local* refs.
{% if 'gitfs_remotes' in minion -%} {% if 'gitfs_remotes' in minion -%}
gitfs_remotes: gitfs_remotes:
{% for remote in minion['gitfs_remotes'] %}
{% if remote is mapping %}
{% for repo, children in remote.iteritems() %}
{%- for remote in minion['gitfs_remotes'] %}
{%- if remote is iterable and remote is not string %}
{%- for repo, children in remote.iteritems() %}
- {{ repo }}: - {{ repo }}:
{% for child in children %}
{% for key, value in child.iteritems() %}
{%- for child in children %}
{%- for key, value in child.iteritems() %}
- {{ key }}: {{ value }} - {{ key }}: {{ value }}
{% endfor %}
{% endfor %}
{% endfor %}
{% else %}
{%- endfor -%}
{%- endfor -%}
{%- endfor -%}
{%- else %}
- {{ remote }} - {{ remote }}
{% endif %}
{% endfor %}
{% endif %}
{%- endif -%}
{%- endfor -%}
{%- endif -%}
# #
#gitfs_remotes: #gitfs_remotes:
# - git://github.com/saltstack/salt-states.git # - git://github.com/saltstack/salt-states.git

Loading…
Cancel
Save