From 06918a758ab140636cbb1030a9ef09995a0f9f45 Mon Sep 17 00:00:00 2001 From: lean Date: Tue, 24 Mar 2020 18:33:17 +0800 Subject: [PATCH] ddns-scripts: add '*' hostname support --- net/ddns-scripts/Makefile | 2 +- net/ddns-scripts/files/dynamic_dns_functions.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net/ddns-scripts/Makefile b/net/ddns-scripts/Makefile index fe634882..6886b4ac 100755 --- a/net/ddns-scripts/Makefile +++ b/net/ddns-scripts/Makefile @@ -12,7 +12,7 @@ PKG_NAME:=ddns-scripts PKG_VERSION:=2.7.8 # Release == build # increase on changes of services files or tld_names.dat -PKG_RELEASE:=17 +PKG_RELEASE:=18 PKG_LICENSE:=GPL-2.0 PKG_MAINTAINER:= diff --git a/net/ddns-scripts/files/dynamic_dns_functions.sh b/net/ddns-scripts/files/dynamic_dns_functions.sh index cbeb09bc..6a3afd2f 100755 --- a/net/ddns-scripts/files/dynamic_dns_functions.sh +++ b/net/ddns-scripts/files/dynamic_dns_functions.sh @@ -64,7 +64,7 @@ IPV4_REGEX="[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}" IPV6_REGEX="\(\([0-9A-Fa-f]\{1,4\}:\)\{1,\}\)\(\([0-9A-Fa-f]\{1,4\}\)\{0,1\}\)\(\(:[0-9A-Fa-f]\{1,4\}\)\{1,\}\)" # characters that are dangerous to pass to a shell command line -SHELL_ESCAPE="[\"\'\`\$\!();><{}?|\[\]\*\\\\]" +SHELL_ESCAPE="[\"\'\`\$\!();><{}?|\[\]\\\\]" # dns character set DNS_CHARSET="[@a-zA-Z0-9._-]"