Module: check_mk
Branch: master
Commit: 0fc62d5b241acf7ec566e91d1abfa6ebdf0e190c
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=0fc62d5b241acf…
Author: Lars Michelsen <lm(a)mathias-kettner.de>
Date: Thu Jun 30 16:34:28 2011 +0200
Updated bug entries
---
.bugs/122 | 10 +++++++---
.bugs/201 | 12 +++++++++---
.bugs/209 | 11 ++++++++---
3 files changed, 24 insertions(+), 9 deletions(-)
diff --git a/.bugs/122 b/.bugs/122
index a901e6c..cbd19b2 100644
--- a/.bugs/122
+++ b/.bugs/122
@@ -1,10 +1,11 @@
Title: --snmpwalk creates OIDs without leading .
Component: core
+State: done
+Class: bug
+Date: 2011-02-08 12:13:30
Benefit: 1
-State: open
Cost: 1
-Date: 2011-02-08 12:13:30
-Class: bug
+Fun: 0
The --snmpwalk stores the OIDs without a leading dot,
whereas the real snmpwalk outputs a dot. This leads
@@ -13,3 +14,6 @@ Resolution: make --snmpwalk also prepend a dot.
Note: This was detected in a case where OID_STRING
was used.
+
+2011-06-30 15:54:42: changed state open -> done
+This has already been fixed some time ago.
diff --git a/.bugs/201 b/.bugs/201
index b52109c..801a85f 100644
--- a/.bugs/201
+++ b/.bugs/201
@@ -1,11 +1,17 @@
Title: cmk -N HOSTNAME outputs legacy checks of all hosts
Component: core
+State: closed
+Class: bug
+Date: 2011-03-05 23:02:05
Benefit: 1
-State: open
Cost: 2
-Date: 2011-03-05 23:02:05
-Class: bug
+Fun: 0
Somebody said that cmk -N HOSTNAME outputs always all
legacy checks, not only that of a specific host.
Check and maybe fix this.
+
+2011-06-30 16:04:28: changed state open -> closed
+The legacy checks are only shown for the configured hosts. But what is shown is the extra_nagios_conf.
+This is clear since cmk can not decide for which hosts this is needed. So this needs to be included
+for all hosts.
diff --git a/.bugs/209 b/.bugs/209
index c97b61b..d818a79 100644
--- a/.bugs/209
+++ b/.bugs/209
@@ -1,9 +1,14 @@
Title: Man-Pages in HTML format have formatting errors
Component: doku
+State: done
+Class: bug
+Date: 2011-03-14 09:38:59
Benefit: 2
-State: open
Cost: 2
-Date: 2011-03-14 09:38:59
-Class: bug
+Fun: 0
See the documentation of the df-Check.
+
+2011-06-30 16:34:25: changed state open -> done
+Fixed handling of double braces {{ and }}. There were problems in
+HTML and also regular rendering.
Module: check_mk
Branch: master
Commit: ac9536f392b932cc0d6ba602ffb00237ff178a04
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=ac9536f392b932…
Author: Lars Michelsen <lm(a)mathias-kettner.de>
Date: Thu Jun 30 12:00:42 2011 +0200
windows_updates: Added missing manpage
---
ChangeLog | 1 +
checkman/windows_updates | 33 +++++++++++++++++++++++++++++++++
2 files changed, 34 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index afc861e..010e3eb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -19,6 +19,7 @@
* lnx_if: treat interfaces without information from ethtool as
softwareLoopback interface. The will not be found by inventory now.
* vbox_guest: new check for checking guest additions of Linux virtual box hosts
+ * windows_updates: Added missing manpage
Multisite:
* FIX: make non-Ascii characters in services names work again
diff --git a/checkman/windows_updates b/checkman/windows_updates
new file mode 100644
index 0000000..d67a5c5
--- /dev/null
+++ b/checkman/windows_updates
@@ -0,0 +1,33 @@
+title: Checks number of pending windows updates and needed reboot state
+agents: windows
+author: Lars Michelsen <lm(a)mathias-kettner.de>
+license: GPL
+distribution: check_mk
+description:
+ The check uses WMI to fetch the number of pending important and optional updates
+ on a windows system. It also checks if a reboot is needed after installing updates.
+
+ By default the check only fetches the information and never raises WARNING/CRITICAL
+ states. But this can be configured.
+
+ The windows agent needs to be extended with the {windows_updates.vbs} provided
+ in {agents/windows/plugins}.
+
+inventory:
+ One service named {System Updates} is being created for each host.
+
+perfdata:
+ Two values important and optional which contain the number of pending updates.
+
+[parameters]
+imp_warn (int): Number of pending important updates to raise a WARNING state.
+ Can be set to None for disabling the level.
+imp_crit (int): Number of pending important updates to raise a CRITICAL state
+ Can be set to None for disabling the level.
+opt_warn (int): Number of pending optional updates to raise a WARNING state
+ Can be set to None for disabling the level.
+opt_crit (int): Number of pending optional updates to raise a CRITICAL state
+ Can be set to None for disabling the level.
+
+[configuration]
+windows_updates_default_params (tuple of four ints): Default value is set to {(None, None, None, None)}