diff options
author | JACK <jack9603301@163.com> | 2020-07-13 21:17:35 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-13 21:17:35 +0800 |
commit | e87e39ae599f5de227c05e208d55461eb9dec2dd (patch) | |
tree | 5463bfc058b6bae77e8c40b698b4d4295d4172eb | |
parent | d736643099570f6a945ee46956f849e545ccc187 (diff) | |
download | vyos-1x-e87e39ae599f5de227c05e208d55461eb9dec2dd.tar.gz vyos-1x-e87e39ae599f5de227c05e208d55461eb9dec2dd.zip |
dns: T2675: fix recursor.vyos-hostsd.conf.lua
When users use the standard fully qualified domain name writing method,
there will be an extra point after the actual domain name.
In order to ensure that the standard writing method is supported,
it should not be mandatory to add this point in Lua script
-rw-r--r-- | data/templates/dns-forwarding/recursor.vyos-hostsd.conf.lua.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/dns-forwarding/recursor.vyos-hostsd.conf.lua.tmpl b/data/templates/dns-forwarding/recursor.vyos-hostsd.conf.lua.tmpl index 6d1760199..b0d99d9ae 100644 --- a/data/templates/dns-forwarding/recursor.vyos-hostsd.conf.lua.tmpl +++ b/data/templates/dns-forwarding/recursor.vyos-hostsd.conf.lua.tmpl @@ -17,7 +17,7 @@ addNTA("{{ a }}.", "{{ tag }} alias") -- from 'service dns forwarding domain' {%- for zone, zonedata in forward_zones.items() %} {%- if zonedata['addNTA'] %} -addNTA("{{ zone }}.", "static") +addNTA("{{ zone }}", "static") {%- endif %} {%- endfor %} {%- endif %} |