From: Qian Zheng Date: Thu, 21 Sep 2017 01:10:45 +0000 (+0800) Subject: net/ddns-scripts: Fix deSEC update URL X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;ds=sidebyside;h=f626cd6334f8a3c097d44975aa0cd0c041d7a4f7;p=feed%2Fpackages.git net/ddns-scripts: Fix deSEC update URL deSEC update API doesn't support http://[USERNAME]:[PASSWORD]@update.dedyn.io/update authorization. So we need to pass username & password as get parameters. API ref: https://desec.io/#!/en/docs/update-api-details Signed-off-by: Qian Zheng --- diff --git a/net/ddns-scripts/Makefile b/net/ddns-scripts/Makefile index f1e084904d..2d544e9472 100755 --- a/net/ddns-scripts/Makefile +++ b/net/ddns-scripts/Makefile @@ -12,7 +12,7 @@ PKG_NAME:=ddns-scripts PKG_VERSION:=2.7.6 # 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:=Christian Schoenebeck diff --git a/net/ddns-scripts/files/services b/net/ddns-scripts/files/services index acaa9ad8f7..1140261fef 100644 --- a/net/ddns-scripts/files/services +++ b/net/ddns-scripts/files/services @@ -60,7 +60,7 @@ "ddo.jp" "http://free.ddo.jp/dnsupdate.php?dn=[DOMAIN]&pw=[PASSWORD]&ip=[IP]" -"desec.io" "http://[USERNAME]:[PASSWORD]@update.dedyn.io/?hostname=[DOMAIN]&myipv4=[IP]" "good|nochg" +"desec.io" "http://update.dedyn.io/?username=[USERNAME]&password=[PASSWORD]&hostname=[DOMAIN]&myipv4=[IP]" "good|nochg" "dhis.org" "http://[USERNAME]:[PASSWORD]@is.dhis.org/" diff --git a/net/ddns-scripts/files/services_ipv6 b/net/ddns-scripts/files/services_ipv6 index 611107d2c8..c593aef648 100644 --- a/net/ddns-scripts/files/services_ipv6 +++ b/net/ddns-scripts/files/services_ipv6 @@ -50,7 +50,7 @@ # "ddnss.de" "http://[USERNAME]:[PASSWORD]@ip6.ddnss.de/upd.php?host=[DOMAIN]&ip6=[IP]" "good|nochg" "ddnss.de" "http://ip6.ddnss.de/upd.php?user=[USERNAME]&pwd=[PASSWORD]&host=[DOMAIN]&ip6=[IP]" "good|nochg" -"desec.io" "http://[USERNAME]:[PASSWORD]@update.dedyn.io/?hostname=[DOMAIN]&myipv6=[IP]" "good|nochg" +"desec.io" "http://update.dedyn.io/?username=[USERNAME]&password=[PASSWORD]&hostname=[DOMAIN]&myipv6=[IP]" "good|nochg" "dhis.org" "http://[USERNAME]:[PASSWORD]@is.dhis.org/"