mirror of
https://github.com/certbot/certbot.git
synced 2026-08-01 19:02:52 +02:00
fixes #2927
This commit is contained in:
@@ -120,6 +120,13 @@ def supported_challenges_validator(data):
|
|||||||
|
|
||||||
"""
|
"""
|
||||||
challs = data.split(",")
|
challs = data.split(",")
|
||||||
|
|
||||||
|
# tls-sni-01 was dvsni during private beta
|
||||||
|
if "dvsni" in challs:
|
||||||
|
challs = [challenges.TLSSNI01.typ if chall == "dvsni" else chall
|
||||||
|
for chall in challs]
|
||||||
|
data = ",".join(challs)
|
||||||
|
|
||||||
unrecognized = [name for name in challs
|
unrecognized = [name for name in challs
|
||||||
if name not in challenges.Challenge.TYPES]
|
if name not in challenges.Challenge.TYPES]
|
||||||
if unrecognized:
|
if unrecognized:
|
||||||
|
|||||||
Reference in New Issue
Block a user