mirror of
https://github.com/saltstack-formulas/salt-formula.git
synced 2024-11-28 02:57:50 +01:00
Allow repo options to be set per repo for gitfs_remotes in pillar
This commit is contained in:
parent
2013d4b499
commit
2b51a6f0c3
@ -484,7 +484,19 @@ fileserver_backend:
|
||||
{% if 'gitfs_remotes' in master -%}
|
||||
gitfs_remotes:
|
||||
{%- for remote in master['gitfs_remotes'] %}
|
||||
- {{ remote }}{% endfor -%}
|
||||
{% if remote is mapping %}
|
||||
{%- for repo, children in remote.iteritems() -%}
|
||||
- {{ repo }}:
|
||||
{%- for child in children %}
|
||||
{% for key, value in child.iteritems() -%}
|
||||
- {{ key }}: {{ value }}
|
||||
{%- endfor %}
|
||||
{%- endfor %}
|
||||
{%- endfor %}
|
||||
{%- else -%}
|
||||
- {{ remote }}
|
||||
{%- endif %}
|
||||
{%- endfor %}
|
||||
{%- endif %}
|
||||
#
|
||||
#gitfs_remotes:
|
||||
|
Loading…
Reference in New Issue
Block a user