summaryrefslogtreecommitdiff
path: root/data/templates/dns-forwarding/recursor.conf.tmpl
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2022-04-16 12:13:06 +0200
committerChristian Poessinger <christian@poessinger.com>2022-04-16 12:13:06 +0200
commit68f8acbaf44379173faaa8aa7cae6ee40024df88 (patch)
treec8a8b546b48e8f34579e7a023e6dea476bd85352 /data/templates/dns-forwarding/recursor.conf.tmpl
parentabfe42d11137373f6549d17e69618840d574e524 (diff)
downloadvyos-1x-68f8acbaf44379173faaa8aa7cae6ee40024df88.tar.gz
vyos-1x-68f8acbaf44379173faaa8aa7cae6ee40024df88.zip
dns: T4353: fix Jinja2 linting errors
Diffstat (limited to 'data/templates/dns-forwarding/recursor.conf.tmpl')
-rw-r--r--data/templates/dns-forwarding/recursor.conf.tmpl41
1 files changed, 0 insertions, 41 deletions
diff --git a/data/templates/dns-forwarding/recursor.conf.tmpl b/data/templates/dns-forwarding/recursor.conf.tmpl
deleted file mode 100644
index 385bef94b..000000000
--- a/data/templates/dns-forwarding/recursor.conf.tmpl
+++ /dev/null
@@ -1,41 +0,0 @@
-### Autogenerated by dns_forwarding.py ###
-
-# XXX: pdns recursor doesn't like whitespace near entry separators,
-# especially in the semicolon-separated lists of name servers.
-# Please be careful if you edit the template.
-
-# Non-configurable defaults
-daemon=yes
-threads=1
-allow-from={{ allow_from | join(',') }}
-log-common-errors=yes
-non-local-bind=yes
-query-local-address={{ source_address | join(',') }}
-lua-config-file=recursor.conf.lua
-
-# cache-size
-max-cache-entries={{ cache_size }}
-
-# negative TTL for NXDOMAIN
-max-negative-ttl={{ negative_ttl }}
-
-# timeout
-network-timeout={{ timeout }}
-
-# ignore-hosts-file
-export-etc-hosts={{ 'no' if ignore_hosts_file is vyos_defined else 'yes' }}
-
-# listen-address
-local-address={{ listen_address | join(',') }}
-
-# dnssec
-dnssec={{ dnssec }}
-
-# serve rfc1918 records
-serve-rfc1918={{ 'no' if no_serve_rfc1918 is vyos_defined else 'yes' }}
-
-# zones
-auth-zones={% for z in authoritative_zones %}{{ z.name }}={{ z.file }}{{- "," if not loop.last -}}{% endfor %}
-
-forward-zones-file=recursor.forward-zones.conf
-