diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/vyos-hostsd/hosts.tmpl | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/data/templates/vyos-hostsd/hosts.tmpl b/data/templates/vyos-hostsd/hosts.tmpl index be8692104..8b73c6e51 100644 --- a/data/templates/vyos-hostsd/hosts.tmpl +++ b/data/templates/vyos-hostsd/hosts.tmpl @@ -12,15 +12,13 @@ ff00::0 ip6-mcastprefix ff02::1 ip6-allnodes ff02::2 ip6-allrouters -{% if hosts %} +{% if hosts is defined and hosts is not none %} # From 'system static-host-mapping' and DHCP server -{% for tag, taghosts in hosts.items() %} +{% for tag, taghosts in hosts.items() %} # {{ tag }} -{% for host, hostprops in taghosts.items() %} -{% if hostprops['address'] %} -{{ hostprops['address'] }} {{ host }}{% for a in hostprops['aliases'] %} {{ a }}{% endfor %} -{% endif %} -{% endfor %} -{% endfor %} +{% for host, hostprops in taghosts.items() if hostprops.address is defined %} +{{ "%-15s" | format(hostprops.address) }} {{ host }} {{ hostprops.aliases|join(' ') if hostprops.aliases is defined }} +{% endfor %} +{% endfor %} {% endif %} |