Module: check_mk
Branch: master
Commit: 4532b402bad77877fdfec15fec7494f1ec5db322
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=4532b402bad778…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Thu Nov 17 19:39:57 2011 +0100
FIX: really suppress precompiling on PING-only hosts now
---
ChangeLog | 4 ++++
modules/check_mk.py | 2 +-
2 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 7a4100d..2cfbdc4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -65,6 +65,10 @@
* New columns num_hosts and num_services in status table
* New aggregation functions suminv and avginv (see Documentation)
+1.1.12p3:
+ Core, Setup, etc.:
+ * FIX: really suppress precompiling on PING-only hosts now
+
1.1.12p2:
Core, Setup, etc.:
* FIX: fix handling of empty suboids
diff --git a/modules/check_mk.py b/modules/check_mk.py
index f9488ee..6b2b350 100755
--- a/modules/check_mk.py
+++ b/modules/check_mk.py
@@ -2311,7 +2311,7 @@ def precompile_hostcheck(hostname):
if len(check_table) == 0:
if opt_verbose:
sys.stderr.write("(no Check_MK checks)\n")
- return
+ return
output = file(source_filename + ".new", "w")
output.write("#!/usr/bin/python\n")