xoxys.network/templates/etc/hosts.j2

10 lines
501 B
Plaintext
Raw Normal View History

2017-05-18 23:10:07 +02:00
#jinja2: trim_blocks: True, lstrip_blocks: True
# {{ ansible_managed }}
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
2017-07-03 20:22:41 +02:00
{% if network_disable_ipv6 == false %}
2017-05-18 23:10:07 +02:00
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
{% endif %}
2017-07-03 20:27:28 +02:00
{% if network_hostname is defined and network_fqdn is defined and network_interfaces[network_defaultif].ipaddr is defined %}
{{ network_interfaces[network_defaultif].ipaddr }} {{ network_fqdn }} {{ network_hostname }}
2017-05-18 23:10:07 +02:00
{% endif %}