Module: check_mk
Branch: master
Commit: d33b4c7002ac2083cdbe17e5993f0cc82ededaea
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=d33b4c7002ac20…
Author: Simon Betz <si(a)mathias-kettner.de>
Date: Thu Feb 2 08:37:16 2017 +0100
fixed interface grouping rule
Change-Id: I454ba7ca0f6d94c9799ebb10c8c0b6e0ef3ceaec
---
web/plugins/wato/check_parameters.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/web/plugins/wato/check_parameters.py b/web/plugins/wato/check_parameters.py
index c45ef29..8b620d8 100644
--- a/web/plugins/wato/check_parameters.py
+++ b/web/plugins/wato/check_parameters.py
@@ -9984,7 +9984,7 @@ def transform_if_groups_forth(params):
param["group_name"] = param["name"]
del param["name"]
if param.get("include_items"):
- param["node_items"] = param["include_items"]
+ param["items"] = param["include_items"]
del param["include_items"]
if param.get("single") is not None:
if param["single"]:
@@ -10005,7 +10005,7 @@ vs_elements_if_groups_matches = [
), forth = lambda x: str(x),
back = lambda x: int(x),
)),
- ("node_items", ListOfStrings(
+ ("items", ListOfStrings(
title = _("Restrict interface items"),
help = _("Only interface with these item names are put into this
group."),
)),