role_dnsmasq/templates/hosts.conf.j2

7 lines
251 B
Django/Jinja

# {{ ansible_managed }}
{% for ip in dnsmasq_host_ips %}
{% set hostnames = [hostvars[host]['inventory_hostname']] + [hostvars[host]['inventory_hostname_short']] + dnsmasq_host_aliases %}
{{ ip }} {{ hostnames | select() | join(' ') }}
{% endfor %}