Merge pull request #17228 from giannoug/fix-do

ddns-scripts: Fix DigitalOcean JSON payload
This commit is contained in:
Florian Eckert 2021-11-30 12:39:33 +01:00 committed by GitHub
commit 7a787760ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 5 deletions

View File

@ -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

View File

@ -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}" \