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