mirror of
https://git.proxmox.com/git/mirror_acme.sh
synced 2025-04-28 15:31:39 +00:00
Fix: Make record_id extraction independent of JSON key order
This commit is contained in:
parent
a6488ff9ac
commit
2f1ca949f0
@ -75,7 +75,9 @@ dns_yandex360_rm() {
|
||||
|
||||
record_id=$(
|
||||
echo "$response" |
|
||||
sed -En 's/.*"recordId":([0-9]+).*"text":"'"${txtvalue}"'".*$/\1/p'
|
||||
_egrep_o '\{[^}]*'"${txtvalue}"'[^}]*\}' |
|
||||
_egrep_o '"recordId":[0-9]*' |
|
||||
cut -d':' -f2
|
||||
)
|
||||
|
||||
if [ -z "$record_id" ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user