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:
Peter Eckersley 2017-01-05 11:04:01 -08:00
parent 4d312d8ffe
commit b1be49c14f

View file

@ -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))