indentation
This commit is contained in:
parent
26edfc2928
commit
940c3a7cc4
@ -47,7 +47,7 @@ dns_kas_add() {
|
||||
return 1
|
||||
elif _contains "$response" "<SOAP-ENV:Fault>"; then
|
||||
faultstring="$(echo "$response" | tr -d '\n\r' | sed "s/<faultstring>/\n=> /g" | sed "s/<\/faultstring>/\n/g" | grep "=>" | sed "s/=> //g")"
|
||||
case "$faultstring" in
|
||||
case "${faultstring}" in
|
||||
"record_already_exists")
|
||||
_info "##KAS## The record already exists, which must not be a problem. Please check manually."
|
||||
;;
|
||||
@ -88,7 +88,7 @@ dns_kas_rm() {
|
||||
return 1
|
||||
elif _contains "$response" "<SOAP-ENV:Fault>"; then
|
||||
faultstring="$(echo "$response" | tr -d '\n\r' | sed "s/<faultstring>/\n=> /g" | sed "s/<\/faultstring>/\n/g" | grep "=>" | sed "s/=> //g")"
|
||||
case "$faultstring" in
|
||||
case "${faultstring}" in
|
||||
"record_id_not_found")
|
||||
_info "##KAS## The record was not found, which must not be a problem. Please check manually."
|
||||
;;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user