From 21f5cdd2fa2d4336d4c77d22d404252be1b82ebd Mon Sep 17 00:00:00 2001 From: Paul Tobias Date: Mon, 26 Aug 2019 18:44:50 +0700 Subject: [PATCH] ddns-scripts: Use https for domains.google.com Without https the update fails with: ``` 132954 : #> /usr/bin/curl -RsS -o /var/run/ddns/myddns_ipv4.dat --stderr /var/run/ddns/myddns_ipv4.err --noproxy '*' 'http://CENSORED:***PW***@domains.google.com/nic/update?hostname=CENSORED&myip=CENSORED' 132954 : DDNS Provider answered: Moved Temporarily

Moved Temporarily

The document has moved here. 132954 ERROR : IP update not accepted by DDNS Provider ``` Signed-off-by: Paul Tobias --- net/ddns-scripts/Makefile | 2 +- net/ddns-scripts/files/services | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net/ddns-scripts/Makefile b/net/ddns-scripts/Makefile index f11c3d52b5..4e7ef2e8c7 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:=11 +PKG_RELEASE:=12 PKG_LICENSE:=GPL-2.0 PKG_MAINTAINER:= diff --git a/net/ddns-scripts/files/services b/net/ddns-scripts/files/services index db55847b2e..f6bdbc021b 100644 --- a/net/ddns-scripts/files/services +++ b/net/ddns-scripts/files/services @@ -114,7 +114,7 @@ "goip.de" "http://www.goip.de/setip?username=[USERNAME]&password=[PASSWORD]&subdomain=[DOMAIN]&ip=[IP]" -"google.com" "http://[USERNAME]:[PASSWORD]@domains.google.com/nic/update?hostname=[DOMAIN]&myip=[IP]" "good|nochg" +"google.com" "https://[USERNAME]:[PASSWORD]@domains.google.com/nic/update?hostname=[DOMAIN]&myip=[IP]" "good|nochg" "he.net" "http://[DOMAIN]:[PASSWORD]@dyn.dns.he.net/nic/update?hostname=[DOMAIN]&myip=[IP]" "good|nochg" -- 2.30.2