mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-12-22 13:11:41 +00:00
avoid temp file for domain list
This commit is contained in:
parent
743f821f1e
commit
d1d2f6f451
@ -115,9 +115,11 @@ _get_root() {
|
|||||||
domain=$1
|
domain=$1
|
||||||
i=1
|
i=1
|
||||||
|
|
||||||
_all_domains="$(_mktemp)"
|
|
||||||
_dns_do_soap getDomainList
|
_dns_do_soap getDomainList
|
||||||
echo "${response}" | tr -d "\n\r\t " | _egrep_o 'domain</key><value[^>]+>[^<]+' | sed -e 's/^domain<\/key><value[^>]+>//g' >"${_all_domains}"
|
_all_domains="/$(echo "${response}" \
|
||||||
|
| tr -d "\n\r\t " \
|
||||||
|
| _egrep_o 'domain</key><value[^>]+>[^<]+' \
|
||||||
|
| sed -e 's/^domain<\/key><value[^>]*>//g')"
|
||||||
|
|
||||||
while true; do
|
while true; do
|
||||||
h=$(printf "%s" "$domain" | cut -d . -f $i-100)
|
h=$(printf "%s" "$domain" | cut -d . -f $i-100)
|
||||||
@ -125,7 +127,7 @@ _get_root() {
|
|||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if grep -q "$(_regexcape "$h")" "${_all_domains}"; then
|
if _contains "${_all_domains}" "^$(_regexcape "$h")\$"; then
|
||||||
_domain="$h"
|
_domain="$h"
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user