munin-formula/munin/files/munin-node.conf

15 lines
349 B
Plaintext
Raw Normal View History

{% set config = pillar.get('munin_node', {}) -%}
#
# This config file is managed by salt.
#
{%- for directive, value in config.iteritems() %}
2014-01-05 03:17:53 -05:00
{%- if value is string or value is number %}
{{ directive }} {{ value }}
{%- else %}
{%- for item in value %}
{{ directive }} {{ item }}
{%- endfor %}
{%- endif %}
{%- endfor %}