2016-04-08 11:50:52 -04:00
|
|
|
# Managed by config management
|
|
|
|
|
2017-08-24 06:49:05 -04:00
|
|
|
{%- if colon is not defined %}
|
|
|
|
{%- set colon = False %}
|
|
|
|
{%- endif %}
|
2016-04-08 12:27:15 -04:00
|
|
|
{%- macro format_value(key, value) %}
|
|
|
|
{#- Some settings, like virtual_alias_maps can take multiple values. Handle this case. -#}
|
|
|
|
{%- if value is iterable and value is not string -%}
|
2017-08-24 06:49:05 -04:00
|
|
|
{{ key }}{% if colon %}:{% endif %} {{ value|join(", ") }}
|
2016-04-08 12:27:15 -04:00
|
|
|
{%- else -%}
|
2017-08-24 06:49:05 -04:00
|
|
|
{{ key }}{% if colon %}:{% endif %} {{ value }}
|
2016-04-08 12:27:15 -04:00
|
|
|
{%- endif -%}
|
|
|
|
{%- endmacro %}
|
|
|
|
|
|
|
|
{%- if data is mapping %}
|
|
|
|
{% for key, value in data.iteritems() %}
|
|
|
|
{{ format_value(key, value) }}
|
|
|
|
{%- endfor -%}
|
|
|
|
{%- else %}
|
|
|
|
{#- Some settings need order, handle OrderedDict #}
|
|
|
|
{% for item in data %}
|
|
|
|
{{ format_value(item.keys()[0], item.values()[0]) }}
|
|
|
|
{%- endfor -%}
|
|
|
|
{%- endif %}
|