mirror of
https://github.com/certbot/certbot.git
synced 2026-06-08 16:22:18 -04:00
Don't crash if openssl is missing
This commit is contained in:
parent
011f6055d4
commit
fcf7387c3d
1 changed files with 1 additions and 0 deletions
|
|
@ -23,6 +23,7 @@ class RevocationChecker(object):
|
|||
if not util.exe_exists("openssl"):
|
||||
logging.info("openssl not installed, can't check revocation")
|
||||
self.broken = True
|
||||
return
|
||||
|
||||
# New versions of openssl want -header var=val, old ones want -header var val
|
||||
test_host_format = Popen(["openssl", "ocsp", "-header", "var", "val"],
|
||||
|
|
|
|||
Loading…
Reference in a new issue