109cf98c03
In case when inventory_dhcp is enabled and node is not deployed yet, inspection is not working because dnsmasq ignores requests from unknown address. Change-Id: I048acc5093d186637db2e92915eb019dc3baab91
7 lines
204 B
Django/Jinja
7 lines
204 B
Django/Jinja
# This file is managed by bifrost
|
|
{% if inventory_dhcp_static_ip | bool == true %}
|
|
{{ nics[0]['mac'] }},{{provisioning_ipv4_address}},{{name}},12h
|
|
{% else %}
|
|
{{ nics[0]['mac'] }},{{name}},12h
|
|
{% endif %}
|