From 058871d0ccc878049d4050161cb707ac09cdf08e Mon Sep 17 00:00:00 2001 From: thl-cmk <thl-cmk@outlook.com> Date: Wed, 7 Jun 2023 15:21:42 +0000 Subject: [PATCH] Delete inv_cisco_wlc_ap_cdp_cache.py --- .../views/inv_cisco_wlc_ap_cdp_cache.py | 27 ------------------- 1 file changed, 27 deletions(-) delete mode 100644 web/plugins/views/inv_cisco_wlc_ap_cdp_cache.py diff --git a/web/plugins/views/inv_cisco_wlc_ap_cdp_cache.py b/web/plugins/views/inv_cisco_wlc_ap_cdp_cache.py deleted file mode 100644 index a444120..0000000 --- a/web/plugins/views/inv_cisco_wlc_ap_cdp_cache.py +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- - -from cmk.gui.plugins.views import ( - inventory_displayhints, ) -from cmk.gui.i18n import _ -from cmk.gui.plugins.views.inventory import declare_invtable_view - -inventory_displayhints.update({ - '.networking.wlan.controller.ap_cdp_cache:': {'title': _('Access Points CDP Cache'), - 'keyorder': ['ap_name', 'ap_address', 'neighbour_name', - 'neighbour_address', 'neighbour_interface', - 'neighbour_platform', ], - 'view': 'invwlcapcdpcache_of_host', - }, - '.networking.wlan.controller.ap_cdp_cache:*.ap_name': {'title': _('AP name'), }, - '.networking.wlan.controller.ap_cdp_cache:*.ap_address': {'title': _('AP address'), }, - '.networking.wlan.controller.ap_cdp_cache:*.neighbour_name': {'title': _('Neighbour name'), }, - '.networking.wlan.controller.ap_cdp_cache:*.neighbour_address': {'title': _('Neighbour address'), }, - '.networking.wlan.controller.ap_cdp_cache:*.neighbour_interface': {'title': _('Neighbour interface'), }, - '.networking.wlan.controller.ap_cdp_cache:*.neighbour_platform': {'title': _('Neighbour platform'), }, - '.networking.wlan.controller.ap_cdp_cache:*.duplex': {'title': _('Duplex'), }, - '.networking.wlan.controller.ap_cdp_cache:*.speed': {'title': _('Speed'), }, -}) - -declare_invtable_view('invwlcapcdpcache', '.networking.wlan.controller.ap_cdp_cache:', _('WLC AP CDP cache'), - _('WLC AP CDP Cache')) -- GitLab