Module: check_mk
Branch: master
Commit: dd1d9745956f3ab69dce926dc0ba635a6b9ce562
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=dd1d9745956f3a…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Sat Jun 29 18:28:35 2013 +0200
Fixed a few typos
---
checkman/brocade_fan | 2 +-
checkman/brocade_power | 2 +-
checks/brocade_temp | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/checkman/brocade_fan b/checkman/brocade_fan
index 9832aee..8e5ae53 100644
--- a/checkman/brocade_fan
+++ b/checkman/brocade_fan
@@ -1,4 +1,4 @@
-title: Fans of a Brocade FC switch
+title: Fans of Brocade FibreChannel switches
catalog: hw/storagehw/brocade
agents: snmp
license: GPL
diff --git a/checkman/brocade_power b/checkman/brocade_power
index 26aae9a..d51c9d4 100644
--- a/checkman/brocade_power
+++ b/checkman/brocade_power
@@ -1,4 +1,4 @@
-title: Power supplies of a Brocade FC switch
+title: Power supplies of Brocade FC switches
catalog: hw/storagehw/brocade
agents: snmp
author: Bastian Kuhn <bk(a)mathias-kettner.de>
diff --git a/checks/brocade_temp b/checks/brocade_temp
index 265ff6f..062b879 100644
--- a/checks/brocade_temp
+++ b/checks/brocade_temp
@@ -56,13 +56,13 @@ def check_brocade_temp(item, params, info):
state = 1
label = "(Levels at: %d/%d) %s" % (warn, crit, name)
- return state, "Temperatur at %d°C%s " % (value, label), perf
- return 3, "Temperatur Sensor not found"
+ return state, "Temperature at %d°C%s " % (value, label), perf
+ return 3, "Temperature sensor not found"
check_info["brocade_temp"] = {
"check_function" : check_brocade_temp,
"inventory_function" : inventory_brocade_temp,
- "service_description" : "Temperatur %s",
+ "service_description" : "Temperature %s",
"has_perfdata" : True,
"group" : "hw_temperature",
"includes" : [ "brocade.include"],