Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions cmk/plugins/vutlan/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
# This file is part of Checkmk (https://checkmk.com). It is subject to the terms and
# conditions defined in the file COPYING, which is part of this source code package.

from cmk.agent_based.v2 import contains
from cmk.agent_based.v2 import any_of, contains

DETECT_VUTLAN_EMS = contains(".1.3.6.1.2.1.1.1.0", "vutlan ems")
DETECT_VUTLAN_EMS = any_of(
contains(".1.3.6.1.2.1.1.1.0", "vutlan ems"),
contains(".1.3.6.1.2.1.1.1.0", "RZproducts DCM"), # Vutlan is ODM
)
Loading