Skip to content

Commit

Permalink
Merge pull request #387 from M2Mobi/extra_config_mapping
Browse files Browse the repository at this point in the history
Fix support for extra config values as mappings
  • Loading branch information
aboe76 authored Dec 19, 2018
2 parents 4bd33dc + 549c73c commit b13bc6d
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 b13bc6d

Please sign in to comment.