Files
ansible-role-common/templates/etc.hosts.j2

22 lines
676 B
Plaintext
Raw Normal View History

2016-06-29 12:34:37 +12:00
# This file is managed by Ansible #
## DO NOT edit manually as changes will be overwritten ##
127.0.0.1 localhost {{ ansible_hostname }}
::1 localhost {{ ansible_hostname }}
2021-09-30 22:55:46 +13:00
{{ ansible_default_ipv4.address }} {{ ansible_hostname }}.{{ common_domain }} {{ ansible_hostname }}
2016-06-29 12:34:37 +12:00
{# note: below block takes a list of ip -> name mappings
applying them to the hosts file should the variable be
populated.
#}
{% if vendors_hosts %}
#*** Vendor Additional Host Entries ***#
{% for item in vendors_hosts %}
2016-06-29 12:34:37 +12:00
{{ item.ip }} {{ item.name }}
{% endfor %}
#*** END Vendor Additional Host Entries ***#
2016-06-29 12:34:37 +12:00
{% endif %}