blob: e64265a69390ecf9ae7f55b101f5b3307bc1d89d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{% for name, info in local_hosts.items() %}
{% if 'mdns' not in info or info.mdns %}
{% if 'ipv4' in info %}
{% for ip in info.ipv4 %}
{% if loop.index <= 1 %}
{{ ip }} {{ name }}.local
{% endif %}
{% endfor %}
{% endif %}
{% if 'ipv6' in info %}
{% for ip in info.ipv6 %}
{% if loop.index <= 1 %}
{{ ip }} {{ name }}.local
{% endif %}
{% endfor %}
{% endif %}
{% endif %}
{% endfor %}
|