Module: check_mk
Branch: master
Commit: d81a5a7326ac6f4d5f8d14b15e7de2c4eb0da8ea
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=d81a5a7326ac6f…
Author: Goetz Golla <gg(a)mathias-kettner.de>
Date: Mon Jan 26 10:24:14 2015 +0100
ibm_svc_array, ibm_svc_portsas: removed obsolete warn/crit symbols
---
checks/ibm_svc_array | 2 --
checks/ibm_svc_portsas | 1 -
2 files changed, 3 deletions(-)
diff --git a/checks/ibm_svc_array b/checks/ibm_svc_array
index cc247b6..225d851 100644
--- a/checks/ibm_svc_array
+++ b/checks/ibm_svc_array
@@ -50,10 +50,8 @@ def check_ibm_svc_array(item, _no_params, info):
status = 0
elif raid_status in ("offline", "degraded"):
status = 2
- message += "(!!)"
else:
status = 1
- message += "(!)"
# add information
message += ", RAID Level: %s, Tier: %s" % (raid_level, tier)
diff --git a/checks/ibm_svc_portsas b/checks/ibm_svc_portsas
index 7f3ef62..b4b1b70 100644
--- a/checks/ibm_svc_portsas
+++ b/checks/ibm_svc_portsas
@@ -42,7 +42,6 @@ def check_ibm_svc_portsas(item, _no_params, info):
state = 0
else:
state = 2
- infotext += "(!!)"
infotext += ", Speed: %s, Type: %s" % (sasport_speed,
sasport_type)