Module: check_mk
Branch: master
Commit: ae2629b5272c0e904be2f92cdc4fdb26de81f6f1
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=ae2629b5272c0e…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Mon Aug 31 10:04:26 2015 +0200
fullfill -> fulfill
---
.werks/1395 | 2 +-
modules/check_mk.py | 8 ++++----
web/htdocs/valuespec.py | 2 +-
web/htdocs/wato.py | 2 +-
4 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/.werks/1395 b/.werks/1395
index ce93c74..457468f 100644
--- a/.werks/1395
+++ b/.werks/1395
@@ -51,7 +51,7 @@ if the host is being monitored by a remote system.</li>
<li>EC notifications do not have a <i>previous</i> host or service state,
since the Event Console is a stateless monitoring.
Do not set any matching criteria on the event type since none of these
-can be fullfilled currently.</li>
+can be fulfilled currently.</li>
<li>All EC notifications are sent as <i>service</i> notifications. The name
of the event's application is taken as service description.</li>
</ul>
diff --git a/modules/check_mk.py b/modules/check_mk.py
index 829fc4b..2504c86 100755
--- a/modules/check_mk.py
+++ b/modules/check_mk.py
@@ -485,7 +485,7 @@ def collect_hosttags():
g_hosttag_taglist_cache = {}
g_global_caches.append('g_hosttag_taglist_cache')
-# Check if a host fullfills the requirements of a tags
+# Check if a host fulfills the requirements of a tags
# list. The host must have all tags in the list, except
# for those negated with '!'. Those the host must *not* have!
# New in 1.1.13: a trailing + means a prefix match
@@ -1128,12 +1128,12 @@ def get_sorted_check_table(hostname, remove_duplicates=False, world="config"):
left = []
at_least_one_hit = False
for check in unsorted:
- deps_fullfilled = True
+ deps_fulfilled = True
for dep in check[4]: # deps
if dep in unsorted_descrs:
- deps_fullfilled = False
+ deps_fulfilled = False
break
- if deps_fullfilled:
+ if deps_fulfilled:
sorted.append(check)
at_least_one_hit = True
else:
diff --git a/web/htdocs/valuespec.py b/web/htdocs/valuespec.py
index 5fba28a..e9833aa 100644
--- a/web/htdocs/valuespec.py
+++ b/web/htdocs/valuespec.py
@@ -71,7 +71,7 @@ class ValueSpec:
# Create a canonical, minimal, default value that
# matches the datatype of the value specification and
- # fullfills also data validation.
+ # fulfills also data validation.
def canonical_value(self):
return None
diff --git a/web/htdocs/wato.py b/web/htdocs/wato.py
index ba61f43..edfe7ce 100644
--- a/web/htdocs/wato.py
+++ b/web/htdocs/wato.py
@@ -15483,7 +15483,7 @@ def mode_edit_rule(phase, new = False):
# Host tags
forms.section(_("Host tags"))
render_condition_editor(tag_specs)
- html.help(_("The rule will only be applied to hosts fullfilling all "
+ html.help(_("The rule will only be applied to hosts fulfilling all "
"of the host tag conditions listed here, even if they appear "
"in the list of explicit host names."))
Module: check_mk
Branch: master
Commit: 5cdb0486b47dd42488615dadce300edfa7a988f5
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=5cdb0486b47dd4…
Author: Simon Betz <si(a)mathias-kettner.de>
Date: Mon Aug 31 09:48:43 2015 +0200
added default levels description to manpages of checks hp_msa_psu.temp and hp_msa_disk.temp
---
checkman/hp_msa_disk.temp | 3 ++-
checkman/hp_msa_psu.temp | 3 ++-
checks/hp_msa_psu | 2 +-
3 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/checkman/hp_msa_disk.temp b/checkman/hp_msa_disk.temp
index 1e11149..c567174 100644
--- a/checkman/hp_msa_disk.temp
+++ b/checkman/hp_msa_disk.temp
@@ -11,7 +11,8 @@ description:
Furthermore it displays the number of temperature sensors.
The levels are configurable.
- No default levels are set.
+ Lower levels are set to 20 and 15 celsius.
+ Upper levels are set to 40 and 45 celsius.
item:
Temperature summary.
diff --git a/checkman/hp_msa_psu.temp b/checkman/hp_msa_psu.temp
index 04b9e26..33326ac 100644
--- a/checkman/hp_msa_psu.temp
+++ b/checkman/hp_msa_psu.temp
@@ -8,7 +8,8 @@ description:
To make it work you have to configure the hp_msa datasource program via WATO.
The levels are configurable.
- No default levels are set.
+ Lower levels are set to 25 and 20 celsius.
+ Upper levels are set to 45 and 50 celsius.
item:
The PSU identifier.
diff --git a/checks/hp_msa_psu b/checks/hp_msa_psu
index b9c2e59..3f33a7a 100644
--- a/checks/hp_msa_psu
+++ b/checks/hp_msa_psu
@@ -133,7 +133,7 @@ check_info['hp_msa_psu.sensor'] = {
# +----------------------------------------------------------------------+
factory_settings["hp_msa_psu_temp_default_levels"] = {
- "levels" : (35.0, 40.0),
+ "levels" : (45.0, 50.0),
"levels_lower" : (25.0, 20.0),
}