Commit b7b93491 authored by shar0119's avatar shar0119 Committed by GitHub
Browse files

Removed unnecessary spaces

parent cd8fcbf9
...@@ -42,7 +42,7 @@ dns_dynu_add() { ...@@ -42,7 +42,7 @@ dns_dynu_add() {
if ! _get_root "$fulldomain"; then if ! _get_root "$fulldomain"; then
_err "Invalid domain" _err "Invalid domain"
return 1 return 1
fi fi
_debug _node "$_node" _debug _node "$_node"
_debug _domain_name "$_domain_name" _debug _domain_name "$_domain_name"
...@@ -83,7 +83,7 @@ _get_root() { ...@@ -83,7 +83,7 @@ _get_root() {
_domain_name=$(printf "%s" "$response" | tr -d "{}" | cut -d , -f 1 | cut -d : -f 2 | cut -d '"' -f 2) _domain_name=$(printf "%s" "$response" | tr -d "{}" | cut -d , -f 1 | cut -d : -f 2 | cut -d '"' -f 2)
_node=$(printf "%s" "$response" | tr -d "{}" | cut -d , -f 3 | cut -d : -f 2 | cut -d '"' -f 2) _node=$(printf "%s" "$response" | tr -d "{}" | cut -d , -f 3 | cut -d : -f 2 | cut -d '"' -f 2)
return 0 return 0
} }
_dynu_rest() { _dynu_rest() {
...@@ -113,7 +113,7 @@ _dynu_rest() { ...@@ -113,7 +113,7 @@ _dynu_rest() {
_dynu_authentication() { _dynu_authentication() {
realm="$(printf "%s" "$Dynu_ClientId:$Dynu_Secret" | _base64)" realm="$(printf "%s" "$Dynu_ClientId:$Dynu_Secret" | _base64)"
export _H1="Authorization: Basic $realm" export _H1="Authorization: Basic $realm"
export _H2="Content-Type: application/json" export _H2="Content-Type: application/json"
...@@ -128,7 +128,7 @@ _dynu_authentication() { ...@@ -128,7 +128,7 @@ _dynu_authentication() {
if _contains "$Dynu_Token" "null"; then if _contains "$Dynu_Token" "null"; then
Dynu_Token="" Dynu_Token=""
fi fi
_debug2 response "$response" _debug2 response "$response"
return 0 return 0
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment