ansible-role-munin/templates/hosts.conf.j2

11 lines
198 B
Plaintext
Raw Normal View History

# Munin hosts.
{% for host in munin_hosts %}
[{{ host.name }}]
address {{ host.address }}
{% if host.extra %}
{% for extra in host.extra %}
{{ extra }}
{% endfor %}
{% endif %}
{% endfor %}