Module: check_mk
Branch: master
Commit: 6ca432ee391a350c6c6ccc4a35c100d9af6887aa
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=6ca432ee391a35…
Author: Lars Michelsen <lm(a)mathias-kettner.de>
Date: Fri Apr 5 08:48:58 2013 +0200
Added tcp port parameter to SSL certificate check (Thanks to Marcel Schulte)
---
ChangeLog | 3 ++
web/plugins/wato/active_checks.py | 42 ++++++++++++++++++++++---------------
2 files changed, 28 insertions(+), 17 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 8969ac7..056b979 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -94,6 +94,9 @@
Multisite:
* FIX: Fixed umlaut handling in reloaded snapins
+ WATO:
+ * Added tcp port parameter to SSL certificate check (Thanks to Marcel Schulte)
+
1.2.2b7:
Checks & Agents:
* FIX: postfix_mailq: fix labels in WATO rule, set correct default levels
diff --git a/web/plugins/wato/active_checks.py b/web/plugins/wato/active_checks.py
index 56d8d7e..2e8a13b 100644
--- a/web/plugins/wato/active_checks.py
+++ b/web/plugins/wato/active_checks.py
@@ -465,23 +465,31 @@ register_rule(group,
Dictionary(
title = _("Check SSL Certificate Age"),
elements = [
- ( "cert_days",
- Integer(
- title = _("Age"),
- help = _("Minimum number of days a certificate has to be valid. "
- "Port defaults to 443. When this option is used the URL "
- "is not checked."),
- unit = _("days"),
- )
- ),
- ( "cert_host",
- TextAscii(
- title = _("Check Cerficate on diffrent IP/ DNS Name"),
- help = _("For each SSL cerficate on a host, a diffrent IP address is needed. "
- "Here you can specify there address if it differs from the "
- "address from the host primary address."),
- )
- ),
+ ( "cert_days",
+ Integer(
+ title = _("Age"),
+ help = _("Minimum number of days a certificate has to be valid. "
+ "Port defaults to 443. When this option is used the URL "
+ "is not checked."),
+ unit = _("days"),
+ )
+ ),
+ ( "cert_host",
+ TextAscii(
+ title = _("Check Cerficate on diffrent IP/ DNS Name"),
+ help = _("For each SSL cerficate on a host, a diffrent IP address is needed. "
+ "Here you can specify there address if it differs from the "
+ "address from the host primary address."),
+ )
+ ),
+ ("port",
+ Integer(
+ title = _("TCP Port"),
+ minvalue = 1,
+ maxvalue = 65535,
+ default_value = 443,
+ )
+ ),
],
required_keys = [ "cert_days" ],
),
Module: check_mk
Branch: master
Commit: 161bf6e98ad2c85680a7df8d8ce899250c2b399a
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=161bf6e98ad2c8…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Thu Apr 4 17:30:41 2013 +0200
Updated bug entries #0824, #0886
---
.bugs/824 | 7 +++++--
.bugs/886 | 7 +++++--
2 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/.bugs/824 b/.bugs/824
index 12091c7..30776db 100644
--- a/.bugs/824
+++ b/.bugs/824
@@ -1,9 +1,9 @@
Title: auth.serials are not created in manual installations
Component: core
-State: open
+Class: todo
+State: done
Date: 2013-01-24 17:36:24
Targetversion: 1.2.2
-Class: todo
Hello,
@@ -23,3 +23,6 @@ Wolfgang
Resolution: We do not try to create this file but assume a serial
number of 0 for all users in case that file is missing.
+
+2013-04-04 17:30:01: changed state open -> done
+Sollte jetzt klappen.
diff --git a/.bugs/886 b/.bugs/886
index d1aa9e9..042b33a 100644
--- a/.bugs/886
+++ b/.bugs/886
@@ -1,9 +1,9 @@
Title: Manual installion of EC without OMD
Component: docu
-State: open
+Class: todo
+State: done
Date: 2013-01-24 16:46:23
Targetversion: 1.2.3
-Class: todo
ch versuche mich gerade an der Event Console (mkeventd).
Ich habe jedoch massive Probleme in einer nicht OMD Umgebung.
@@ -96,3 +96,6 @@ Wäre toll wenn man die Umgehungslösungen in mkevent einpflegen könnte.
Versionsinfos:
CentOS 6.2
check_MK 1.2.1i4
+
+2013-04-04 17:29:40: changed state open -> done
+Ist inzwischen in setup.py integriert.