Browse Source

Merge pull request #62 from sinnerschrader/fix/support_jinja_lt_2_6

enables use of jinja < 2.6
tags/v0.57.0
Nitin Madhok 10 years ago
parent
commit
3b892e47cc
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      salt/files/master.d/_defaults.conf

+ 1
- 1
salt/files/master.d/_defaults.conf View File

@@ -484,7 +484,7 @@ fileserver_backend:
{% if 'gitfs_remotes' in master -%}
gitfs_remotes:
{%- for remote in master['gitfs_remotes'] %}
{% if remote is mapping %}
{% if remote is iterable %}
{%- for repo, children in remote.iteritems() -%}
- {{ repo }}:
{%- for child in children %}

Loading…
Cancel
Save