diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-09-25 19:21:36 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-09-25 19:21:36 +0200 |
commit | f39f5dde342aa5e14d1fb4155920c61ac5fd11b1 (patch) | |
tree | b6282ff86de6e8e40281d73e6d4f5b8d1140083c /data/templates/dns-forwarding/recursor.conf.tmpl | |
parent | 7f09beeac924b1bc9bf61f8153870bd4cb939b96 (diff) | |
download | vyos-1x-f39f5dde342aa5e14d1fb4155920c61ac5fd11b1.tar.gz vyos-1x-f39f5dde342aa5e14d1fb4155920c61ac5fd11b1.zip |
dns: forwarding: T2921: migrate to get_config_dict()
Diffstat (limited to 'data/templates/dns-forwarding/recursor.conf.tmpl')
-rw-r--r-- | data/templates/dns-forwarding/recursor.conf.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/dns-forwarding/recursor.conf.tmpl b/data/templates/dns-forwarding/recursor.conf.tmpl index d233b8abc..b0ae3cc61 100644 --- a/data/templates/dns-forwarding/recursor.conf.tmpl +++ b/data/templates/dns-forwarding/recursor.conf.tmpl @@ -21,7 +21,7 @@ max-cache-entries={{ cache_size }} max-negative-ttl={{ negative_ttl }} # ignore-hosts-file -export-etc-hosts={{ export_hosts_file }} +export-etc-hosts={{ 'no' if ignore_hosts_file is defined else 'yes' }} # listen-address local-address={{ listen_address | join(',') }} |