Browse Source

Quotation and ipv6 (#355)

* Added quotration around globing rules
master
Jerzy Drozdz 6 years ago
parent
commit
d1e4768cdb
1 changed files with 18 additions and 18 deletions
  1. +18
    -18
      salt/files/master.d/f_defaults.conf

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

# For example, if you manage your custom modules and states in subversion # For example, if you manage your custom modules and states in subversion
# and don't want all the '.svn' folders and content synced to your minions, # and don't want all the '.svn' folders and content synced to your minions,
# you could set this to '/\.svn($|/)'. By default nothing is ignored. # you could set this to '/\.svn($|/)'. By default nothing is ignored.
{% if 'file_ignore_regex' in cfg_master %}
{%- if 'file_ignore_regex' in cfg_master %}
{%- do default_keys.append('file_ignore_regex') %} {%- do default_keys.append('file_ignore_regex') %}
file_ignore_regex: file_ignore_regex:
{% for regex in cfg_master['file_ignore_regex'] %}
{%- for regex in cfg_master['file_ignore_regex'] %}
- {{ regex }} - {{ regex }}
{% endfor %}
{% elif 'file_ignore_regex' in cfg_salt %}
{%- endfor %}
{%- elif 'file_ignore_regex' in cfg_salt %}
file_ignore_regex: file_ignore_regex:
{% for regex in cfg_salt['file_ignore_regex'] %}
{%- for regex in cfg_salt['file_ignore_regex'] %}
- {{ regex }} - {{ regex }}
{% endfor %}
{% else %}
{%- endfor %}
{%- else %}
#file_ignore_regex: #file_ignore_regex:
# - '/\.svn($|/)' # - '/\.svn($|/)'
# - '/\.git($|/)' # - '/\.git($|/)'
{% endif %}
{%- endif %}


# A file glob (or list of file globs) that will be matched against the file # A file glob (or list of file globs) that will be matched against the file
# path before syncing the modules and states to the minions. This is similar # path before syncing the modules and states to the minions. This is similar
# to file_ignore_regex above, but works on globs instead of regex. By default # to file_ignore_regex above, but works on globs instead of regex. By default
# nothing is ignored. # nothing is ignored.
{% if 'file_ignore_glob' in cfg_master %}
{%- if 'file_ignore_glob' in cfg_master %}
{%- do default_keys.append('file_ignore_glob') %} {%- do default_keys.append('file_ignore_glob') %}
file_ignore_glob: file_ignore_glob:
{% for glob in cfg_master['file_ignore_glob'] %}
- {{ glob }}
{% endfor %}
{% elif 'file_ignore_glob' in cfg_salt %}
{%- for glob in cfg_master['file_ignore_glob'] %}
- '{{ glob }}'
{%- endfor %}
{%- elif 'file_ignore_glob' in cfg_salt %}
file_ignore_glob: file_ignore_glob:
{% for glob in cfg_salt['file_ignore_glob'] %}
- {{ glob }}
{% endfor %}
{% else %}
{%- for glob in cfg_salt['file_ignore_glob'] %}
- '{{ glob }}'
{%- endfor %}
{%- else %}
# file_ignore_glob: # file_ignore_glob:
# - '*.pyc' # - '*.pyc'
# - '*/somefolder/*.bak' # - '*/somefolder/*.bak'
# - '*.swp' # - '*.swp'
{% endif %}
{%- endif %}


# File Server Backend # File Server Backend
# #

Loading…
Cancel
Save