Browse Source

Fix Windows repo settings using values from 2015.8 documentation

master
Imran Iqbal 8 years ago
parent
commit
7474d4239d
1 changed files with 7 additions and 7 deletions
  1. +7
    -7
      salt/files/master.d/f_defaults.conf

+ 7
- 7
salt/files/master.d/f_defaults.conf View File

##### Windows Software Repo settings ##### ##### Windows Software Repo settings #####
########################################### ###########################################
# Location of the repo on the master: # Location of the repo on the master:
{{ get_config('win_repo_dir_ng', '/srv/salt/win/repo-ng') }}
{{ get_config('winrepo_dir_ng', '/srv/salt/win/repo-ng') }}


# List of git repositories to include with the local repo: # List of git repositories to include with the local repo:
{% if 'win_gitrepos_ng' in cfg_master %}
win_gitrepos_ng:
{% for repo in cfg_master['win_gitrepos_ng'] %}
{% if 'winrepo_remotes_ng' in cfg_master %}
winrepo_remotes_ng:
{% for repo in cfg_master['winrepo_remotes_ng'] %}
- {{ repo }} - {{ repo }}
{% endfor %} {% endfor %}
{% elif 'win_gitrepos_ng' in cfg_salt %}
win_gitrepos_ng:
{% for repo in cfg_salt['win_gitrepos_ng'] %}
{% elif 'winrepo_remotes_ng' in cfg_salt %}
winrepo_remotes_ng:
{% for repo in cfg_salt['winrepo_remotes_ng'] %}
- {{ repo }} - {{ repo }}
{% endfor %} {% endfor %}
{% else %} {% else %}

Loading…
Cancel
Save