9 lines
301 B
Plaintext
9 lines
301 B
Plaintext
{% from "glance/map.jinja" import glance_cache_config with context -%}
|
|
# This file is managed by salt
|
|
{% for section, section_values in glance_cache_config | dictsort(true) %}
|
|
[{{ section }}]
|
|
{%- for key, value in section_values|dictsort(true)%}
|
|
{{ key }} = {{ value }}
|
|
{%- endfor %}
|
|
{% endfor %}
|