2
0

Added module_config section to minion template

This commit is contained in:
Kenneth Wilke 2013-09-03 09:45:24 -05:00
parent d337cc2784
commit 9404ebf915
2 changed files with 14 additions and 1 deletions

View File

@ -10,3 +10,12 @@ salt:
- /srv/salt
minion:
master: salt
module_config:
test: True
test.foo: foo
test.bar:
- baz
- quo
test.baz:
spam: sausage
cheese: bread

View File

@ -509,7 +509,11 @@ pillar_roots:
#
# A dict for the test module:
#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 ######
###########################################