mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-10 00:11:45 +00:00
fix egrep and exit
This commit is contained in:
parent
266e9d0619
commit
10cb7585a7
@ -13,7 +13,7 @@ dns_yandex_add() {
|
|||||||
fulldomain="${1}"
|
fulldomain="${1}"
|
||||||
txtvalue="${2}"
|
txtvalue="${2}"
|
||||||
_debug "Calling: dns_yandex_add() '${fulldomain}' '${txtvalue}'"
|
_debug "Calling: dns_yandex_add() '${fulldomain}' '${txtvalue}'"
|
||||||
_PDD_credentials || exit 1
|
_PDD_credentials || return 1
|
||||||
export _H1="PddToken: $PDD_Token"
|
export _H1="PddToken: $PDD_Token"
|
||||||
|
|
||||||
curDomain="$(echo "${fulldomain}" | rev | cut -d . -f 1-2 | rev)"
|
curDomain="$(echo "${fulldomain}" | rev | cut -d . -f 1-2 | rev)"
|
||||||
@ -28,7 +28,7 @@ dns_yandex_add() {
|
|||||||
dns_yandex_rm() {
|
dns_yandex_rm() {
|
||||||
fulldomain="${1}"
|
fulldomain="${1}"
|
||||||
_debug "Calling: dns_yandex_rm() '${fulldomain}'"
|
_debug "Calling: dns_yandex_rm() '${fulldomain}'"
|
||||||
_PDD_credentials || exit 1
|
_PDD_credentials || return 1
|
||||||
export _H1="PddToken: $PDD_Token"
|
export _H1="PddToken: $PDD_Token"
|
||||||
record_id=$(pdd_get_record_id "${fulldomain}")
|
record_id=$(pdd_get_record_id "${fulldomain}")
|
||||||
_debug "Result: $record_id"
|
_debug "Result: $record_id"
|
||||||
@ -60,5 +60,5 @@ pdd_get_record_id() {
|
|||||||
curUri="https://pddimp.yandex.ru/api2/admin/dns/list?domain=${curDomain}"
|
curUri="https://pddimp.yandex.ru/api2/admin/dns/list?domain=${curDomain}"
|
||||||
curResult="$(_get "${curUri}" | _normalizeJson)"
|
curResult="$(_get "${curUri}" | _normalizeJson)"
|
||||||
_debug "Result: $curResult"
|
_debug "Result: $curResult"
|
||||||
echo "$curResult" | grep -o "{[^{]*\"content\":[^{]*\"subdomain\":\"${curSubdomain}\"" | sed -n -e 's#.* "record_id": \(.*\),[^,]*#\1#p'
|
echo "$curResult" | _egrep_o "{[^{]*\"content\":[^{]*\"subdomain\":\"${curSubdomain}\"" | sed -n -e 's#.* "record_id": \(.*\),[^,]*#\1#p'
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user