aboutsummaryrefslogtreecommitdiff
path: root/net/ddns-scripts/files/usr/lib
diff options
context:
space:
mode:
authorMartijn Atema <martijn@atema.one>2021-11-14 21:17:27 +0100
committerMartijn Atema <martijn@atema.one>2021-11-15 12:44:41 +0100
commitde2a9d4b132c7382cb82491252e9eb1d6718a02a (patch)
treef1b62bcde65f26018af13289b59406f83e6d4a80 /net/ddns-scripts/files/usr/lib
parent89f015ee63b0b846688124d2dbbeba0f3dc9501a (diff)
ddns-scripts: Fix typo in route53 update script
Signed-off-by: Martijn Atema <martijn@atema.one>
Diffstat (limited to 'net/ddns-scripts/files/usr/lib')
-rw-r--r--net/ddns-scripts/files/usr/lib/ddns/update_route53_v1.sh2
1 files changed, 1 insertions, 1 deletions
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 6d752ba9e..499f27203 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 <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'"