aboutsummaryrefslogtreecommitdiffstats
path: root/roles/fedora/templates/hosts.j2
blob: 695442d98f4175cd98980aa4a5bee210739636f5 (plain) (blame)
1
2
3
4
5
6
7
8
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
{% if hosts is defined %}

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