Skip to content

Commit

Permalink
Fix support for extra config values as mappings
Browse files Browse the repository at this point in the history
  • Loading branch information
pprkut committed Nov 12, 2018
1 parent ed9a1b1 commit 549c73c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion salt/files/minion.d/f_defaults.conf
Original file line number Diff line number Diff line change
Expand Up @@ -1255,7 +1255,7 @@ alternative.mongo.{{ name }}: {{ value }}

{%- for configname in cfg_minion %}
{%- if configname not in reserved_keys and configname not in default_keys %}
{%- if cfg_minion[configname] is iterable and cfg_minion[configname] is not string %}
{%- if cfg_minion[configname] is iterable and cfg_minion[configname] is not mapping and cfg_minion[configname] is not string %}
{{ configname }}:
{%- for item in cfg_minion[configname] %}
- {{ item }}
Expand Down

0 comments on commit 549c73c

Please sign in to comment.