mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-09 16:01:46 +00:00
Fixed acmetest for domain acmetestXyzRandomName.github-test.<domain> that was explicitly disallowed as it is not _acme-challenge
This commit is contained in:
parent
a364ab4ea7
commit
444b111a62
@ -204,7 +204,8 @@ deleteRecord() {
|
||||
fulldomain=$1
|
||||
txtvalue=$2
|
||||
|
||||
if [ "$(echo "$fulldomain" | grep "_acme-challenge")" = "" ]; then
|
||||
# Fix for acmetest to limit acme.sh to only work on _acme-challenge and acmeTestXYzRandomName in GitHub actions
|
||||
if [ "$(echo "$fulldomain" | grep "_acme-challenge\|acmetestXyzRandomName.github-test")" = "" ]; then
|
||||
_err "The script tried to delete the record $fulldomain which is not the above created ACME challenge"
|
||||
return 1
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user