Edited master template

made fileserver_backend and gitfs_remotes look more like expected
This commit is contained in:
Kenneth Wilke 2013-08-23 11:52:46 -05:00
parent d47edecafd
commit 153feac309
1 changed files with 12 additions and 4 deletions

View File

@ -379,8 +379,12 @@ file_ignore_glob:
# fileserver_backend: # fileserver_backend:
# - git # - git
# - roots # - roots
{{ get_config('fileserver_backend', '[]') }} {% if 'fileserver_backend' in master -%}
fileserver_backend:
{% for backend in master['fileserver_backend'] -%}
- {{ backend }}
{%- endfor %}
{% endif %}
# Git fileserver backend configuration # Git fileserver backend configuration
# When using the git fileserver backend at least one git remote needs to be # When using the git fileserver backend at least one git remote needs to be
# defined. The user running the salt master will need read access to the repo. # defined. The user running the salt master will need read access to the repo.
@ -393,8 +397,12 @@ file_ignore_glob:
# environments. # environments.
# Note: file:// repos will be treated as a remote, so refs you want used must # Note: file:// repos will be treated as a remote, so refs you want used must
# exist in that repo as *local* refs. # exist in that repo as *local* refs.
{{ get_config('gitfs_remotes', '[]') }} {% if 'gitfs_remotes' in master -%}
gitfs_remotes:
{% for remote in master['gitfs_remotes'] -%}
- {{ remote }}
{%- endfor %}
{% endif %}
##### Pillar settings ##### ##### Pillar settings #####
########################################## ##########################################