From 17c4b03320ffa4d4688067744d88755c96a67d69 Mon Sep 17 00:00:00 2001 From: Scott Lamb Date: Thu, 15 Jul 2021 11:24:59 -0700 Subject: [PATCH] ddns-scripts: use https for google ipv6 ddns url This matches an ipv4 change in 21f5cdd2fa and has the same rationale. Google requires https for both ipv6 and ipv6. Signed-off-by: Scott Lamb (cherry picked from commit e5f45b94c0ecfd9548d2efa7bba04e014dc66bf3) --- net/ddns-scripts/Makefile | 2 +- net/ddns-scripts/files/usr/share/ddns/default/google.com.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net/ddns-scripts/Makefile b/net/ddns-scripts/Makefile index 272136f80..21a39efb9 100644 --- a/net/ddns-scripts/Makefile +++ b/net/ddns-scripts/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ddns-scripts PKG_VERSION:=2.8.2 -PKG_RELEASE:=10 +PKG_RELEASE:=11 PKG_LICENSE:=GPL-2.0 diff --git a/net/ddns-scripts/files/usr/share/ddns/default/google.com.json b/net/ddns-scripts/files/usr/share/ddns/default/google.com.json index f1e2f953f..edfe461c8 100644 --- a/net/ddns-scripts/files/usr/share/ddns/default/google.com.json +++ b/net/ddns-scripts/files/usr/share/ddns/default/google.com.json @@ -5,7 +5,7 @@ "answer": "good|nochg" }, "ipv6": { - "url": "http://[USERNAME]:[PASSWORD]@domains.google.com/nic/update?hostname=[DOMAIN]&myip=[IP]", + "url": "https://[USERNAME]:[PASSWORD]@domains.google.com/nic/update?hostname=[DOMAIN]&myip=[IP]", "answer": "good|nochg" } }