https-dns-proxy: bugfix: prevent canary domains duplicates
Signed-off-by: Stan Grishin <stangri@melmac.ca>
This commit is contained in:
parent
845d81ca09
commit
f99ada410f
2 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=https-dns-proxy
|
PKG_NAME:=https-dns-proxy
|
||||||
PKG_VERSION:=2021-11-22
|
PKG_VERSION:=2021-11-22
|
||||||
PKG_RELEASE:=5
|
PKG_RELEASE:=6
|
||||||
|
|
||||||
PKG_SOURCE_PROTO:=git
|
PKG_SOURCE_PROTO:=git
|
||||||
PKG_SOURCE_URL:=https://github.com/aarond10/https_dns_proxy/
|
PKG_SOURCE_URL:=https://github.com/aarond10/https_dns_proxy/
|
||||||
|
|
|
@ -257,7 +257,7 @@ dnsmasq_doh_server() {
|
||||||
add)
|
add)
|
||||||
if [ "$forceDNS" -ne 0 ]; then
|
if [ "$forceDNS" -ne 0 ]; then
|
||||||
for i in $canaryDomains; do
|
for i in $canaryDomains; do
|
||||||
uci_add_list 'dhcp' "$cfg" 'server' "/${i}/"
|
uci_add_list_if_new 'dhcp' "$cfg" 'server' "/${i}/"
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
case $address in
|
case $address in
|
||||||
|
|
Loading…
Reference in a new issue