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

9 lines
221 B
Plaintext
Raw Permalink Normal View History

# Munin hosts.
2020-04-17 07:39:06 +00:00
{% for host in groups[munin_hosts] %}
{% if host != inventory_hostname %}
[{{ host }}]
address {{ hostvars[host]['ansible_default_ipv4']['address'] }}
use_node_name yes
{% endif %}
{% endfor %}