# Autogenerated by VyOS (vyos-hostsd) # Do not edit, your changes will get overwritten # dot zone (catch-all): '+' indicates recursion is desired # (same as forward-zones-recurse) {#- the code below ensures the order of nameservers is determined first by #} {#- the order of tags, then by the order of nameservers within that tag #} {%- set n = namespace(dot_zone_ns='') %} {%- for tag in name_server_tags_recursor %} {%- set ns = '' %} {%- if tag in name_servers %} {%- set ns = ns + name_servers[tag]|join(', ') %} {%- set n.dot_zone_ns = (n.dot_zone_ns, ns)|join(', ') if n.dot_zone_ns != '' else ns %} {%- endif %} # {{ tag }}: {{ ns }} {%- endfor %} {%- if n.dot_zone_ns %} +.={{ n.dot_zone_ns }} {%- endif %} {% if forward_zones -%} # zones added via 'service dns forwarding domain' {%- for zone, zonedata in forward_zones.items() %} {% if zonedata['recursion-desired'] %}+{% endif %}{{ zone }}={{ zonedata['nslist']|join(', ') }} {%- endfor %} {%- endif %}