Skip to content
Snippets Groups Projects
Commit 96e951d7 authored by jurgenhaas's avatar jurgenhaas
Browse files

Bug fix

parent 91fca422
No related branches found
No related tags found
No related merge requests found
...@@ -46,9 +46,11 @@ ff02::2 ip6-allrouters ...@@ -46,9 +46,11 @@ ff02::2 ip6-allrouters
{% endif %} {% endif %}
{% endfor %} {% endfor %}
{% for hostname, host in (commonauth_extras|default([])).iteritems() %} {% if commonauth_extras is defined %}
{% for hostname, host in commonauth_extras.iteritems() %}
{% if host.ip is defined %} {% if host.ip is defined %}
{{ host.ip }} {{ hostname }}{% for alias in host.aliases|default([]) %} {{ alias }}{% endfor %} {{ host.ip }} {{ hostname }}{% for alias in host.aliases|default([]) %} {{ alias }}{% endfor %}
{% endif %} {% endif %}
{% endfor %} {% endfor %}
{% endif %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment