Collection of CheckMK checks (see https://checkmk.com/). All checks and plugins are provided as is. Absolutely no warranty. Send any comments to thl-cmk[at]outlook[dot]com

Skip to content
Snippets Groups Projects
Commit 69726744 authored by thl-cmk's avatar thl-cmk :flag_na:
Browse files

update project

parent b65c5951
No related branches found
No related tags found
No related merge requests found
No preview for this file type
......@@ -204,14 +204,6 @@ def discovery_ssllabs_grade(section: SECTION) -> DiscoveryResult:
yield Service(item=ssl_host)
def collect_has_warnings(end_points: Sequence[SSLLabsEndpoint]) -> Sequence[bool]:
return list(set([end_point.has_warnings for end_point in end_points if end_point.has_warnings is not None]))
def collect_is_exceptional(end_points: Sequence[SSLLabsEndpoint]) -> Sequence[bool]:
return list(set([end_point.is_exceptional for end_point in end_points if end_point.is_exceptional is not None]))
def check_grade(score: Tuple, grade: str, name: str, notice_only: bool) -> Result:
re_ok = re_compile(score[0])
re_warn = re_compile(score[1])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment