From de2a9d4b132c7382cb82491252e9eb1d6718a02a Mon Sep 17 00:00:00 2001 From: Martijn Atema Date: Sun, 14 Nov 2021 21:17:27 +0100 Subject: [PATCH] ddns-scripts: Fix typo in route53 update script Signed-off-by: Martijn Atema --- net/ddns-scripts/Makefile | 2 +- net/ddns-scripts/files/usr/lib/ddns/update_route53_v1.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net/ddns-scripts/Makefile b/net/ddns-scripts/Makefile index 30b509e26a..45faa42a98 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:=15 +PKG_RELEASE:=16 PKG_LICENSE:=GPL-2.0 diff --git a/net/ddns-scripts/files/usr/lib/ddns/update_route53_v1.sh b/net/ddns-scripts/files/usr/lib/ddns/update_route53_v1.sh index 6d752ba9ed..499f272031 100644 --- a/net/ddns-scripts/files/usr/lib/ddns/update_route53_v1.sh +++ b/net/ddns-scripts/files/usr/lib/ddns/update_route53_v1.sh @@ -4,7 +4,7 @@ # 2017 Max Berger [ -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'"