Module: check_mk
Branch: master
Commit: bb7c5b71deef7fd4ef39f75082750440c8a6626d
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=bb7c5b71deef7f…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Wed Apr 20 11:54:04 2011 +0200
FIX: cmk -D: drop obsolete (and always empty) Notification:
---
ChangeLog | 1 +
modules/check_mk.py | 2 --
2 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index ee32a22..f71416a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
1.1.11i1:
Core, Setup, etc.:
+ * FIX: cmk -D: drop obsolete (and always empty) Notification:
* FIX: better handling of broken checks returning empty services
* FIX: fix computation of weight when averaging
* FIX: fix detection of missing OIDs (led to empty lines)
diff --git a/modules/check_mk.py b/modules/check_mk.py
index aaa3b31..847a6c1 100755
--- a/modules/check_mk.py
+++ b/modules/check_mk.py
@@ -2919,8 +2919,6 @@ def dump_host(hostname):
print tty_yellow + "Parents: " + tty_normal + ",
".join(parents_list)
print tty_yellow + "Host groups: " + tty_normal + ",
".join(hostgroups_of(hostname))
print tty_yellow + "Contact groups: " + tty_normal + ",
".join(host_contactgroups_of([hostname]))
- notperiod = (host_extra_conf(hostname, host_notification_periods) +
[""])[0]
- print tty_yellow + "Notification: " + tty_normal + notperiod
agenttype = "TCP (port: %d)" % agent_port
if is_snmp_host(hostname):
credentials = snmp_credentials_of(hostname)