Module: check_mk
Branch: master
Commit: 39f666d6a5f05661532a71a9809897270f2749ec
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=39f666d6a5f056…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Tue Jul 31 17:50:56 2012 +0200
Fixed optical output of airlaser check
---
checks/cbl_airlaser | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/checks/cbl_airlaser b/checks/cbl_airlaser
index f1a068b..d38fdfd 100644
--- a/checks/cbl_airlaser
+++ b/checks/cbl_airlaser
@@ -43,11 +43,11 @@ def check_cbl_airlaser_status(item, _no_params, info):
if status == "1":
return (0, "OK - Airlaser: normal operation")
elif status == "2":
- return (1, "WARNING - (!)Airlaser: testing mode")
+ return (1, "WARN - Airlaser: testing mode")
elif status == "3":
- return (1, "WARNING - (!)Airlaser: warning condition")
+ return (1, "WARN - Airlaser: warning condition")
elif status == "4":
- return (2, "CRITICAL - (!!)Airlaser: a component has failed
self-tests")
+ return (2, "CRIT - Airlaser: a component has failed self-tests")
return (3, "UNKNOWN - Unknown data from agent")