mirror of
https://github.com/certbot/certbot.git
synced 2026-07-27 00:00:44 +02:00
ocsp checking needs -verify_other
https://community.letsencrypt.org/t/unable-to-verify-ocsp-response/7264
This commit is contained in:
+3
-2
@@ -40,9 +40,10 @@ def revoked_status(cert_path, chain_path):
|
||||
"-issuer", chain_path,
|
||||
"-cert", cert_path,
|
||||
"-url", url,
|
||||
"-CAfile", chain_path])
|
||||
"-CAfile", chain_path,
|
||||
"-verify_other", chain_path])
|
||||
except errors.SubprocessError:
|
||||
return "(OCSP Failure)"
|
||||
return "OCSP Failure"
|
||||
|
||||
return _translate_ocsp_query(cert_path, output)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user