ddns-scripts: Fix typo in route53 update script 17125/head
authorMartijn Atema <martijn@atema.one>
Sun, 14 Nov 2021 20:17:27 +0000 (21:17 +0100)
committerMartijn Atema <martijn@atema.one>
Mon, 15 Nov 2021 11:44:41 +0000 (12:44 +0100)
Signed-off-by: Martijn Atema <martijn@atema.one>
net/ddns-scripts/Makefile
net/ddns-scripts/files/usr/lib/ddns/update_route53_v1.sh

index 30b509e26ac66ad4e683debabf536cce03f9cc3c..45faa42a983dc1af5432201f841c860990bb96f3 100644 (file)
@@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=ddns-scripts
 PKG_VERSION:=2.8.2
-PKG_RELEASE:=15
+PKG_RELEASE:=16
 
 PKG_LICENSE:=GPL-2.0
 
index 6d752ba9ed3fb649d61683458a2f5476c898ed74..499f272031600aeea61ab2b184f860dba4188cdb 100644 (file)
@@ -4,7 +4,7 @@
 # 2017 Max Berger <max at berger dot name>
 
 [ -z "${CURL_SSL}" ] && write_log 14 "Amazon AWS Route53 communication require cURL with SSL support. Please install"
-[ -z "{$username}" ] && write_log 14 "Service section not configured correctly! Missing key as 'username'"
+[ -z "${username}" ] && write_log 14 "Service section not configured correctly! Missing key as 'username'"
 [ -z "${password}" ] && write_log 14 "Service section not configured correctly! Missing secret as 'password'"
 [ -z "${domain}" ] && write_log 14 "Service section not configured correctly! Missing zone id as 'domain'"