dns_kinghost.sh :: changed printf to echo

This commit is contained in:
Felipe Braz 2018-03-20 10:08:52 -03:00
parent 6787c81abe
commit aa9975ad0d
1 changed files with 4 additions and 4 deletions

View File

@ -39,14 +39,14 @@ dns_kinghost_add() {
#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
if ! printf "%s" "$response" | grep '"status":"ok"' >/dev/null; then
if ! echo "$response" | grep '"status":"ok"' >/dev/null; then
_err "Error"
_err "$response"
return 1
fi
_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 "$response"
return 1
@ -76,14 +76,14 @@ dns_kinghost_rm() {
#This API call returns "status":"ok" if dns record does not 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 "$response"
return 1
fi
_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 "$response"
return 1