We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a99608b commit af322aeCopy full SHA for af322ae
2 files changed
Makefile
@@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
2
3
PKG_NAME:=https-dns-proxy
4
PKG_VERSION:=2023.12.26
5
-PKG_RELEASE:=2
+PKG_RELEASE:=3
6
7
PKG_SOURCE_PROTO:=git
8
PKG_SOURCE_URL:=https://github.com/aarond10/https_dns_proxy/
files/etc/init.d/https-dns-proxy
@@ -320,7 +320,7 @@ service_triggers() {
320
wan6="${wan6:-wan6}"
321
fi
322
output "Setting trigger${wan6:+s} for $wan ${wan6:+$wan6 }"
323
- for i in "$wan" "$wan6"; do
+ for i in $wan $wan6; do
324
procd_add_interface_trigger "interface.*" "$i" "/etc/init.d/${packageName}" restart 'on_interface_trigger' && output_ok || output_fail
325
done
326
output '\n'
0 commit comments