fix variables in templates
This commit is contained in:
parent
f79e647b61
commit
14ea7071e4
@ -1,3 +1,3 @@
|
|||||||
{% if network.hostname is defined %}
|
{% if network_hostname is defined %}
|
||||||
{{ network.hostname }}
|
{{ network_hostname }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
#jinja2: trim_blocks: True, lstrip_blocks: True
|
#jinja2: trim_blocks: True, lstrip_blocks: True
|
||||||
# {{ ansible_managed }}
|
# {{ ansible_managed }}
|
||||||
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
|
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
|
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if network.hostname is defined and network.fqdn is defined and network.config[network.defaultif].ipaddr is defined %}
|
{% 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 }}
|
{{ network_config[network_defaultif]_ipaddr }} {{ network_fqdn }} {{ network_hostname }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Loading…
Reference in New Issue
Block a user