aboutsummaryrefslogtreecommitdiffstats
path: root/roles/debian/templates/hosts.j2
blob: 31e5684e856c773714e2ee1517065b7085d78c25 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
127.0.0.1 localhost

::1     localhost ip6-localhost ip6-loopback
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
{% if hosts is defined %}

{% for addr, names in hosts|dictsort(true) %}
{{ addr }} {{ names|join(' ') }}
{% endfor %}
{% endif %}