blse2-public/common-debian/templates/etc/hosts.j2

15 lines
311 B
Plaintext
Raw Permalink Normal View History

2023-05-05 15:47:27 -04:00
# Local system hosts file
# {{ ansible_managed }}
127.0.0.1 localhost
::1 ip6-localhost ip6-loopback
ff02::1 ip6-allmodes
ff02::2 ip6-allrouters
{% if hosts_entries is defined %}
{% for host in hosts_entries %}
{{ host.ip }}{% for name in host.names %} {{ name }}{% endfor %}
{% endfor %}
{% endif %}