15 lines
349 B
Plaintext
15 lines
349 B
Plaintext
{% set config = pillar.get('munin_node', {}) -%}
|
|
#
|
|
# This config file is managed by salt.
|
|
#
|
|
|
|
{%- for directive, value in config.iteritems() %}
|
|
{%- if value is string or value is number %}
|
|
{{ directive }} {{ value }}
|
|
{%- else %}
|
|
{%- for item in value %}
|
|
{{ directive }} {{ item }}
|
|
{%- endfor %}
|
|
{%- endif %}
|
|
{%- endfor %}
|