typos fixed

This commit is contained in:
Michael Braunoeder 2019-09-17 15:34:59 +02:00
parent 7a19826a70
commit 68221f62ea

View File

@ -22,9 +22,9 @@ dns_rcode0_add() {
txtvalue=$2 txtvalue=$2
RCODE0_API_TOKEN"${RCODE0_API_TOKEN:-$(_readaccountconf_mutable RCODE0_API_TOKEN)}" RCODE0_API_TOKEN="${RCODE0_API_TOKEN:-$(_readaccountconf_mutable RCODE0_API_TOKEN)}"
RCODE0_URL"${RCODE0_URL:-$(_readaccountconf_mutable RCODE0_URL)}" RCODE0_URL="${RCODE0_URL:-$(_readaccountconf_mutable RCODE0_URL)}"
RCODE0_TTL"${RCODE0_TTL:-$(_readaccountconf_mutable RCODE0_TTL)}" RCODE0_TTL="${RCODE0_TTL:-$(_readaccountconf_mutable RCODE0_TTL)}"
if [ -z "$RCODE0_URL" ]; then if [ -z "$RCODE0_URL" ]; then
RCODE0_URL="$DEFAULT_RCODE0_URL" RCODE0_URL="$DEFAULT_RCODE0_URL"
@ -69,9 +69,9 @@ dns_rcode0_rm() {
fulldomain=$1 fulldomain=$1
txtvalue=$2 txtvalue=$2
RCODE0_API_TOKEN"${RCODE0_API_TOKEN:-$(_readaccountconf_mutable RCODE0_API_TOKEN)}" RCODE0_API_TOKEN="${RCODE0_API_TOKEN:-$(_readaccountconf_mutable RCODE0_API_TOKEN)}"
RCODE0_URL"${RCODE0_URL:-$(_readaccountconf_mutable RCODE0_URL)}" RCODE0_URL="${RCODE0_URL:-$(_readaccountconf_mutable RCODE0_URL)}"
RCODE0_TTL"${RCODE0_TTL:-$(_readaccountconf_mutable RCODE0_TTL)}" RCODE0_TTL="${RCODE0_TTL:-$(_readaccountconf_mutable RCODE0_TTL)}"
if [ -z "$RCODE0_URL" ]; then if [ -z "$RCODE0_URL" ]; then
RCODE0_URL="$DEFAULT_RCODE0_URL" RCODE0_URL="$DEFAULT_RCODE0_URL"