Add mine_functions to master config template

This commit is contained in:
Jimmy Tang 2015-01-15 16:15:38 +00:00
parent d3b920f5c7
commit deee69319f
2 changed files with 22 additions and 0 deletions

View File

@ -9,6 +9,11 @@ salt:
file_roots:
base:
- /srv/salt
mine_functions:
network.interfaces: []
network.ip_addrs: []
grains.items: []
minion:
master: salt
fileserver_backend:

View File

@ -817,6 +817,23 @@ peer_run:
# web.*:
# - network.*
# - disk.*
{% if 'mine_functions' in cfg_master %}
mine_functions:
{% for name, roots in cfg_master['mine_functions'].items() %}
{{ name }}:
{% for mod in roots %}
- {{ mod }}
{% endfor %}
{% endfor %}
{% elif 'mine_functions' in cfg_salt %}
mine_functions:
{% for name, roots in cfg_salt['mine_functions'].items() %}
{{ name }}:
{% for mod in roots %}
- {{ mod }}
{% endfor %}
{% endfor %}
{% endif %}
##### Logging settings #####