Unverified Commit e5506312 authored by neil's avatar neil Committed by GitHub
Browse files

Merge pull request #1886 from philr/skip_alias_when_already_verified

Skip aliases of already verified domains
parents 87d2f7f2 fd536d37
...@@ -2925,6 +2925,7 @@ _clearupdns() { ...@@ -2925,6 +2925,7 @@ _clearupdns() {
_debug txt "$txt" _debug txt "$txt"
if [ "$keyauthorization" = "$STATE_VERIFIED" ]; then if [ "$keyauthorization" = "$STATE_VERIFIED" ]; then
_debug "$d is already verified, skip $vtype." _debug "$d is already verified, skip $vtype."
_alias_index="$(_math "$_alias_index" + 1)"
continue continue
fi fi
...@@ -3775,6 +3776,7 @@ $_authorizations_map" ...@@ -3775,6 +3776,7 @@ $_authorizations_map"
_debug d "$d" _debug d "$d"
if [ "$keyauthorization" = "$STATE_VERIFIED" ]; then if [ "$keyauthorization" = "$STATE_VERIFIED" ]; then
_debug "$d is already verified, skip $vtype." _debug "$d is already verified, skip $vtype."
_alias_index="$(_math "$_alias_index" + 1)"
continue continue
fi fi
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment