mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-14 02:11:45 +00:00
Fix code style problems
This commit is contained in:
parent
c7116d40ca
commit
f90f8824bb
@ -22,7 +22,6 @@ dns_simply_add() {
|
|||||||
_simply_save_config
|
_simply_save_config
|
||||||
|
|
||||||
_debug "First detect the root zone"
|
_debug "First detect the root zone"
|
||||||
|
|
||||||
if ! _get_root "$fulldomain"; then
|
if ! _get_root "$fulldomain"; then
|
||||||
_err "invalid domain"
|
_err "invalid domain"
|
||||||
return 1
|
return 1
|
||||||
@ -68,7 +67,7 @@ dns_simply_rm() {
|
|||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
records=$(echo "$response" | tr '{' "\n" | grep 'record_id\|type\|data\|\name' | sed 's/\"record_id/;\"record_id/' | tr "\n" ' '| tr -d ' ' | tr ';' ' ')
|
records=$(echo "$response" | tr '{' "\n" | grep 'record_id\|type\|data\|\name' | sed 's/\"record_id/;\"record_id/' | tr "\n" ' ' | tr -d ' ' | tr ';' ' ')
|
||||||
|
|
||||||
nr_of_deleted_records=0
|
nr_of_deleted_records=0
|
||||||
_info "Fetching txt record"
|
_info "Fetching txt record"
|
||||||
@ -76,11 +75,11 @@ dns_simply_rm() {
|
|||||||
for record in $records; do
|
for record in $records; do
|
||||||
_debug record "$record"
|
_debug record "$record"
|
||||||
|
|
||||||
record_data=$(echo "$record" | cut -d "," -f 3 | sed 's/"//g' | grep "data" | cut -d ":" -f 2)
|
record_data=$(echo "$record" | cut -d "," -f 3 | sed 's/"//g' | grep "data" | cut -d ":" -f 2)
|
||||||
record_type=$(echo "$record" | cut -d "," -f 4 | sed 's/"//g' | grep "type" | cut -d ":" -f 2)
|
record_type=$(echo "$record" | cut -d "," -f 4 | sed 's/"//g' | grep "type" | cut -d ":" -f 2)
|
||||||
|
|
||||||
_debug2 record_data "$record_data"
|
_debug2 record_data "$record_data"
|
||||||
_debug2 record_type "$record_type"
|
_debug2 record_type "$record_type"
|
||||||
|
|
||||||
if [ "$record_data" = "$txtvalue" ] && [ "$record_type" = "TXT" ]; then
|
if [ "$record_data" = "$txtvalue" ] && [ "$record_type" = "TXT" ]; then
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user