pbr: bugfix: fix is_domain() 20372/head
authorStan Grishin <stangri@melmac.ca>
Sun, 22 Jan 2023 23:13:18 +0000 (23:13 +0000)
committerStan Grishin <stangri@melmac.ca>
Sun, 22 Jan 2023 23:13:24 +0000 (23:13 +0000)
* fixes https://github.com/openwrt/packages/issues/20352

Signed-off-by: Stan Grishin <stangri@melmac.ca>
net/pbr/Makefile
net/pbr/files/etc/config/pbr
net/pbr/files/etc/init.d/pbr.init

index ab931e7cd9757b8b7c663a945fb345ca2c5947f7..3d8438d9e1bf046e67cbd90c62b921bc9ca5e893 100644 (file)
@@ -5,7 +5,7 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=pbr
 PKG_VERSION:=1.0.1
-PKG_RELEASE:=14
+PKG_RELEASE:=16
 PKG_LICENSE:=GPL-3.0-or-later
 PKG_MAINTAINER:=Stan Grishin <stangri@melmac.ca>
 
index 355fac2052099abb292dbacef52c4f22ec746717..857ef1e33a8d4902cb2e9c2aea5f9a4754687ff9 100644 (file)
@@ -35,11 +35,3 @@ config policy
        option interface 'wan'
        option dest_addr 'plex.tv my.plexapp.com emby.media app.emby.media tv.emby.media'
        option enabled '0'
-
-config policy
-       option name 'WireGuard Server'
-       option interface 'wan'
-       option src_port '51820'
-       option chain 'OUTPUT'
-       option proto 'udp'
-       option enabled '0'
index e612072c3497b0d4d38656d9942c171972a5b429..848dd2e9e127780a588919cfa379eb9fa4161379 100755 (executable)
@@ -254,7 +254,7 @@ is_ipv6_global() { [ "${1:0:4}" = "2001" ]; }
 # is_ipv6_global() { is_ipv6 "$1" && ! is_ipv6_link_local "$1" && ! is_ipv6_link_local "$1"; }
 is_list() { str_contains "$1" "," || str_contains "$1" " "; }
 is_netmask() { local ip="${1%/*}"; [ "$ip" != "$1" ] && is_ipv4 "$ip"; }
-is_domain() { str_contains "$1" '[a-zA-Z]'; }
+is_domain() { ! is_ipv6 "$1" && str_contains "$1" '[a-zA-Z]'; }
 is_phys_dev() { [ "${1:0:1}" = "@" ] && ip l show | grep -E -q "^\\d+\\W+${1:1}"; }
 dnsmasq_kill() { killall -q -s HUP dnsmasq; }
 dnsmasq_restart() { output 3 'Restarting dnsmasq '; if /etc/init.d/dnsmasq restart >/dev/null 2>&1; then output_okn; else output_failn; fi; }
@@ -579,7 +579,7 @@ nftset() {
                                fi
                                [ -z "$param4" ] &&     param4="$(resolveip_to_nftset4 "$param")"
                                [ -z "$param6" ] &&     param6="$(resolveip_to_nftset6 "$param")"
-                               if [ -z "$param4" ] &&  [ -z "$param6" ]; then
+                               if [ -z "$param4" ] && [ -z "$param6" ]; then
                                        state add 'errorSummary' 'errorFailedToResolve' "$param"
                                else
                                        nft4 add element inet "$nftTable" "$nftset4" "{ $param4 }" && ipv4_error=0