Commit aa9975ad authored by Felipe Braz's avatar Felipe Braz
Browse files

dns_kinghost.sh :: changed printf to echo

parent 6787c81a
...@@ -39,14 +39,14 @@ dns_kinghost_add() { ...@@ -39,14 +39,14 @@ dns_kinghost_add() {
#This API call returns "status":"ok" if dns record does not exists #This API call returns "status":"ok" if dns record does not exists
#We are creating a new txt record here, so we expect the "ok" status #We are creating a new txt record here, so we expect the "ok" status
if ! printf "%s" "$response" | grep '"status":"ok"' >/dev/null; then if ! echo "$response" | grep '"status":"ok"' >/dev/null; then
_err "Error" _err "Error"
_err "$response" _err "$response"
return 1 return 1
fi fi
_kinghost_rest POST "dns" "name=$fulldomain&content=$txtvalue" _kinghost_rest POST "dns" "name=$fulldomain&content=$txtvalue"
if ! printf "%s" "$response" | grep '"status":"ok"' >/dev/null; then if ! echo "$response" | grep '"status":"ok"' >/dev/null; then
_err "Error" _err "Error"
_err "$response" _err "$response"
return 1 return 1
...@@ -76,14 +76,14 @@ dns_kinghost_rm() { ...@@ -76,14 +76,14 @@ dns_kinghost_rm() {
#This API call returns "status":"ok" if dns record does not exists #This API call returns "status":"ok" if dns record does not exists
#We are removing a txt record here, so the record must exists #We are removing a txt record here, so the record must exists
if printf "%s" "$response" | grep '"status":"ok"' >/dev/null; then if echo "$response" | grep '"status":"ok"' >/dev/null; then
_err "Error" _err "Error"
_err "$response" _err "$response"
return 1 return 1
fi fi
_kinghost_rest DELETE "dns" "name=$fulldomain&content=$txtvalue" _kinghost_rest DELETE "dns" "name=$fulldomain&content=$txtvalue"
if ! printf "%s" "$response" | grep '"status":"ok"' >/dev/null; then if ! echo "$response" | grep '"status":"ok"' >/dev/null; then
_err "Error" _err "Error"
_err "$response" _err "$response"
return 1 return 1
......
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