From 68221f62ea3306da3aedee7fc1b6b60d8e5b36b2 Mon Sep 17 00:00:00 2001 From: Michael Braunoeder Date: Tue, 17 Sep 2019 15:34:59 +0200 Subject: [PATCH] typos fixed --- dnsapi/dns_rcode0.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dnsapi/dns_rcode0.sh b/dnsapi/dns_rcode0.sh index e8eb0f32..299c2845 100755 --- a/dnsapi/dns_rcode0.sh +++ b/dnsapi/dns_rcode0.sh @@ -22,9 +22,9 @@ dns_rcode0_add() { txtvalue=$2 - RCODE0_API_TOKEN"${RCODE0_API_TOKEN:-$(_readaccountconf_mutable RCODE0_API_TOKEN)}" - RCODE0_URL"${RCODE0_URL:-$(_readaccountconf_mutable RCODE0_URL)}" - RCODE0_TTL"${RCODE0_TTL:-$(_readaccountconf_mutable RCODE0_TTL)}" + RCODE0_API_TOKEN="${RCODE0_API_TOKEN:-$(_readaccountconf_mutable RCODE0_API_TOKEN)}" + RCODE0_URL="${RCODE0_URL:-$(_readaccountconf_mutable RCODE0_URL)}" + RCODE0_TTL="${RCODE0_TTL:-$(_readaccountconf_mutable RCODE0_TTL)}" if [ -z "$RCODE0_URL" ]; then RCODE0_URL="$DEFAULT_RCODE0_URL" @@ -69,9 +69,9 @@ dns_rcode0_rm() { fulldomain=$1 txtvalue=$2 - RCODE0_API_TOKEN"${RCODE0_API_TOKEN:-$(_readaccountconf_mutable RCODE0_API_TOKEN)}" - RCODE0_URL"${RCODE0_URL:-$(_readaccountconf_mutable RCODE0_URL)}" - RCODE0_TTL"${RCODE0_TTL:-$(_readaccountconf_mutable RCODE0_TTL)}" + RCODE0_API_TOKEN="${RCODE0_API_TOKEN:-$(_readaccountconf_mutable RCODE0_API_TOKEN)}" + RCODE0_URL="${RCODE0_URL:-$(_readaccountconf_mutable RCODE0_URL)}" + RCODE0_TTL="${RCODE0_TTL:-$(_readaccountconf_mutable RCODE0_TTL)}" if [ -z "$RCODE0_URL" ]; then RCODE0_URL="$DEFAULT_RCODE0_URL"