personal-dns/named.stubs.j2

9 lines
164 B
Text
Raw Normal View History

2018-05-09 15:23:04 +00:00
#{% for tld, to in entries.items() %}
zone "{{tld}}" in {
type static-stub;
server-addresses { {{ to | join('; ') }}; };
};
#{% endfor %}
# vim: set ft=named: