blob: 58a5f9312fa83b0dc1ecffdb07e856ee92d02233 (
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
|
### Autogenerated by VyOS ###
### Do not edit, your changes will get overwritten ###
{# 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 #}
{% for tag in name_server_tags_system %}
{% if tag in name_servers %}
# {{ tag }}
{% for ns in name_servers[tag] %}
nameserver {{ ns }}
{% endfor %}
{% endif %}
{% endfor %}
{% if domain_name %}
domain {{ domain_name }}
{% endif %}
{% for tag in name_server_tags_system %}
{% if tag in search_domains %}
# {{ tag }}
search {{ search_domains[tag]|join(' ') }}
{% endif %}
{% endfor %}
|