Collection of CheckMK checks (see https://checkmk.com/). All checks and plugins are provided as is. Absolutely no warranty. Send any comments to thl-cmk[at]outlook[dot]com

Skip to content
Snippets Groups Projects
Commit 50fcf374 authored by thl-cmk's avatar thl-cmk :flag_na:
Browse files

Delete inv_wlc_ap_cdp_cache.py

parent b119f611
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/python
# -*- encoding: utf-8; py-indent-offset: 4 -*-
removecolumns = [
('duplex', 'Duplex'),
('speed', 'Speed'),
]
register_rule('inventory', 'inv_parameters:inv_wlc_ap_cdp_cache',
Dictionary(
title=_('Cisco WLC AP CDP cache'),
elements=[
('disable',
FixedValue(
True,
title=_('disable inventory'),
)),
('remove_domain',
FixedValue(
True,
title=_('remove domain from CDP neighbor name'),
)),
('use_short_if_name',
FixedValue(
True,
title=_('use short interface names (i.e. Gi0/0 for GigabitEthernet0/0'),
)),
('removecolumns',
ListChoice(
title=_('list of columns to remove'),
label=_('list of columns to remove'),
help=_('information to remove from inventory'),
choices=removecolumns,
default_value=[],
)),
],
),
match='dict',
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment