fix variables in templates

This commit is contained in:
Robert Kaussow 2017-07-03 20:22:41 +02:00
parent f79e647b61
commit 14ea7071e4
2 changed files with 5 additions and 5 deletions

View File

@ -1,3 +1,3 @@
{% if network.hostname is defined %}
{{ network.hostname }}
{% if network_hostname is defined %}
{{ network_hostname }}
{% endif %}

View File

@ -1,9 +1,9 @@
#jinja2: trim_blocks: True, lstrip_blocks: True
# {{ ansible_managed }}
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
{% if network.disable_ipv6 == false %}
{% if network_disable_ipv6 == false %}
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
{% endif %}
{% if network.hostname is defined and network.fqdn is defined and network.config[network.defaultif].ipaddr is defined %}
{{ network.config[network.defaultif].ipaddr }} {{ network.fqdn }} {{ network.hostname }}
{% if network_hostname is defined and network_fqdn is defined and network_config[network_defaultif]_ipaddr is defined %}
{{ network_config[network_defaultif]_ipaddr }} {{ network_fqdn }} {{ network_hostname }}
{% endif %}