Browse Source

https-dns-proxy: bugfix: race condition with dnsmasq

Signed-off-by: Stan Grishin <stangri@melmac.net>
lilik-openwrt-22.03
Stan Grishin 4 years ago
committed by Paul Spooren
parent
commit
cd11d8821f
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      net/https-dns-proxy/Makefile
  2. +1
    -1
      net/https-dns-proxy/files/https-dns-proxy.init

+ 1
- 1
net/https-dns-proxy/Makefile View File

@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=https-dns-proxy PKG_NAME:=https-dns-proxy
PKG_VERSION:=2021-01-17 PKG_VERSION:=2021-01-17
PKG_RELEASE:=4
PKG_RELEASE:=5
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


+ 1
- 1
net/https-dns-proxy/files/https-dns-proxy.init View File

@ -110,7 +110,7 @@ start_service() {
procd_open_data procd_open_data
json_add_array firewall json_add_array firewall
for c in $forceDNSPorts; do for c in $forceDNSPorts; do
if netstat -tuln | grep LISTEN | grep ":${c}" >/dev/null 2>&1; then
if netstat -tuln | grep 'LISTEN' | grep ":${c}" >/dev/null 2>&1 || [ "$c" = "53" ]; then
json_add_object "" json_add_object ""
json_add_string type redirect json_add_string type redirect
json_add_string target DNAT json_add_string target DNAT


Loading…
Cancel
Save