2014-08-01 10:08:40 +08:00

11 lines
310 B
Plaintext

{% from "cinder/map.jinja" import cinder_config with context -%}
# This file is managed by salt
{% for section, section_values in cinder_config | dictsort(true) %}
[{{ section }}]
{%- for key, value in section_values| dictsort(true) %}
{{ key }} = {{ value }}
{%- endfor %}
{% endfor %}
{#- vim:ft=sls
-#}