10 lines
252 B
Plaintext
10 lines
252 B
Plaintext
|
# Static table lookup for hostnames.
|
||
|
# See hosts(5) for details.
|
||
|
|
||
|
# This file (/etc/hosts) is automatically generated via Ansible.
|
||
|
# Modifications will be lost!
|
||
|
|
||
|
{% for host in groups["all"] %}
|
||
|
{{ host_vars[host]["local_ip"] }} {{ host }}
|
||
|
{% endfor %}
|