Added module_config section to minion templatemaster
- /srv/salt | - /srv/salt | ||||
minion: | minion: | ||||
master: salt | master: salt | ||||
module_config: | |||||
test: True | |||||
test.foo: foo | |||||
test.bar: | |||||
- baz | |||||
- quo | |||||
test.baz: | |||||
spam: sausage | |||||
cheese: bread |
# | # | ||||
# A dict for the test module: | # A dict for the test module: | ||||
#test.baz: {spam: sausage, cheese: bread} | #test.baz: {spam: sausage, cheese: bread} | ||||
{%- if 'module_config' in minion %} | |||||
{%- for modkey, modval in minion.module_config.items() %} | |||||
{{ modkey }}: {{ modval }} | |||||
{%- endfor %} | |||||
{%- endif %} | |||||
###### Update settings ###### | ###### Update settings ###### | ||||
########################################### | ########################################### |