Merge pull request #91 from qbcode/master
Add mine_functions to master config template
This commit is contained in:
commit
5cec66107a
|
@ -9,6 +9,11 @@ salt:
|
|||
file_roots:
|
||||
base:
|
||||
- /srv/salt
|
||||
mine_functions:
|
||||
network.interfaces: []
|
||||
network.ip_addrs: []
|
||||
grains.items: []
|
||||
|
||||
minion:
|
||||
master: salt
|
||||
fileserver_backend:
|
||||
|
|
|
@ -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 #####
|
||||
|
|
Loading…
Reference in New Issue