From 49defda70c5a9303f6e9f5f197893ceca6a69111 Mon Sep 17 00:00:00 2001 From: George Giannou Date: Sun, 28 Nov 2021 21:10:19 +0200 Subject: [PATCH] ddns-scripts: Fix DigitalOcean JSON payload Signed-off-by: George Giannou --- net/ddns-scripts/Makefile | 2 +- .../files/usr/lib/ddns/update_digitalocean_com_v2.sh | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/net/ddns-scripts/Makefile b/net/ddns-scripts/Makefile index 45faa42a98..3463666d99 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:=16 +PKG_RELEASE:=17 PKG_LICENSE:=GPL-2.0 diff --git a/net/ddns-scripts/files/usr/lib/ddns/update_digitalocean_com_v2.sh b/net/ddns-scripts/files/usr/lib/ddns/update_digitalocean_com_v2.sh index 47fdd8902e..5ee1b13fe7 100644 --- a/net/ddns-scripts/files/usr/lib/ddns/update_digitalocean_com_v2.sh +++ b/net/ddns-scripts/files/usr/lib/ddns/update_digitalocean_com_v2.sh @@ -22,10 +22,8 @@ # Construct JSON payload json_init -json_add_object - json_add_string name "$username" - json_add_string data "$__IP" -json_close_object +json_add_string name "$username" +json_add_string data "$__IP" __STATUS=$(curl -Ss -X PUT "https://api.digitalocean.com/v2/domains/${domain}/records/${param_opt}" \ -H "Authorization: Bearer ${password}" \