mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
Openssl black magic
* With _some_ versions of openssl, when checking OCSP for staging certs only, we need this -trust_other flag
This commit is contained in:
parent
4d312d8ffe
commit
b1be49c14f
1 changed files with 1 additions and 0 deletions
|
|
@ -56,6 +56,7 @@ class RevocationChecker(object):
|
|||
"-url", url,
|
||||
"-CAfile", chain_path,
|
||||
"-verify_other", chain_path,
|
||||
"-trust_other",
|
||||
"-header"] + self.host_args(host)
|
||||
logger.debug("Querying OCSP for %s", cert_path)
|
||||
logger.debug(" ".join(cmd))
|
||||
|
|
|
|||
Loading…
Reference in a new issue