blob: 593a98c24c13489eb4c76a36e7e4a468ecc6da4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{# j2lint: disable=operator-enclosed-by-spaces #}
# 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 is vyos_defined %}
# zones added via 'service dns forwarding domain'
{% for zone, zonedata in forward_zones.items() %}
{{ "+" if zonedata.recursion_desired is vyos_defined }}{{ zone | replace('_', '-') }}={{ zonedata.name_server | join(', ') }}
{% endfor %}
{% endif %}
|