0
0
mirror of https://github.com/saltstack-formulas/salt-formula.git synced 2025-01-20 09:44:28 +01:00

Merge pull request #237 from msonawane/master

add module_config for minions
This commit is contained in:
Forrest 2016-06-26 18:40:47 -07:00 committed by GitHub
commit 137868bcc1

View File

@ -927,6 +927,14 @@ ext_pillar:
# A dict for the test module:
#test.baz: {spam: sausage, cheese: bread}
#
{%- if 'module_config' in cfg_minion %}
{%- for modkey, modval in cfg_minion.module_config.items() %}
{{ modkey }}: {{ modval }}
{%- endfor %}
{%- endif %}
#
###### Update settings ######
###########################################