Merge pull request #8595 from EricLuehrsen/openwrt-18.06

[openwrt-18.06] unbound: correct forward of root domain
This commit is contained in:
Hannu Nyman
2019-04-06 18:16:48 +03:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=unbound
PKG_VERSION:=1.9.1
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_LICENSE:=BSD-3-Clause
PKG_LICENSE_FILES:=LICENSE
+1 -1
View File
@@ -592,7 +592,7 @@ unbound_forward() {
for fdomain in $UNBOUND_LIST_FORWARD ; do
{
echo "forward-zone:"
echo " name: \"$fdomain.\""
echo " name: \"${fdomain%.}.\""
for fresolver in $resolvers ; do
echo " forward-addr: $fresolver"
done