summaryrefslogtreecommitdiff
path: root/data/templates/vyos-hostsd/resolv.conf.j2
blob: 5f651f1a1a1663a9161fe4b02b2b82bcdc3e5df5 (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 %}