mirror of
https://github.com/bashclub/check-opnsense.git
synced 2024-11-07 16:31:58 +01:00
repair _certificate_parser
_certificate_parser expected _config_reader().get("cert") to always return a list, but this will not happen if there is only one cert. Fixed this.
This commit is contained in:
parent
97cbe33d02
commit
2a96e472b4
@ -379,7 +379,10 @@ class checkmk_checker(object):
|
||||
def _certificate_parser(self):
|
||||
self._certificate_timestamp = time.time()
|
||||
self._certificate_store = {}
|
||||
for _cert in self._config_reader().get("cert"):
|
||||
_certs = self._config_reader().get("cert")
|
||||
if not isinstance(_certs, list):
|
||||
_certs = [_certs]
|
||||
for _cert in _certs:
|
||||
try:
|
||||
_certpem = base64.b64decode(_cert.get("crt"))
|
||||
_x509cert = x509.load_pem_x509_certificate(_certpem,crypto_default_backend())
|
||||
|
Loading…
Reference in New Issue
Block a user