From ae9b71837c9adda1c67a689795cc4f43b090230e Mon Sep 17 00:00:00 2001 From: thl-cmk <thl-cmk@outlook.com> Date: Sun, 11 Jul 2021 18:21:25 +0000 Subject: [PATCH] Delete inv_wlc_clients.py --- web/plugins/wato/inv_wlc_clients.py | 72 ----------------------------- 1 file changed, 72 deletions(-) delete mode 100644 web/plugins/wato/inv_wlc_clients.py diff --git a/web/plugins/wato/inv_wlc_clients.py b/web/plugins/wato/inv_wlc_clients.py deleted file mode 100644 index 64ea882..0000000 --- a/web/plugins/wato/inv_wlc_clients.py +++ /dev/null @@ -1,72 +0,0 @@ -#!/usr/bin/python -# -*- encoding: utf-8; py-indent-offset: 4 -*- - -removecolumns = [ - ('ieee80211ucapable' ,'802.11u capable'), - ('aaaoverrideaclapplied' ,'AAA overide ACL applied'), - ('aaaoverrideaclname' ,'AAA overide ACL name'), - ('aaarole' ,'AAA role'), - ('accessvlan' ,'Access VLAN'), - ('aclapplied' ,'ACL applied'), - ('aclname' ,'ACL name'), -# ('apmacaddress' ,'AP MAC address'), - ('aproammacaddress' ,'AP roam MAC address'), - ('associationmode' ,'Association mode'), - ('authentication' ,'Authentication'), - ('authmode' ,'Auth mode'), -# ('channel' ,'Channel'), - ('currenttxrateset' ,'Current TX rate (MBit/s)'), - ('datarateset' ,'Data rate set'), - ('dataswitching' ,'Data switching'), -# ('devicetype' ,'Device type'), - ('hreapapauth' ,'HREAP AP auth'), - ('iftype' ,'Interface type'), -# ('ipaddress' ,'IP address'), - ('ipv6aclapplied' ,'IPv6 ACL applied'), - ('ipv6aclname' ,'IPv6 ACL name'), - ('logintime' ,'Login time'), - ('macaddress' ,'MAC Addresse'), - ('mdnsadvcount' ,'mDNS adv count'), - ('mdnsprofile' ,'mDNS profile'), - ('nacstate' ,'NAC state'), - ('policyname' ,'Policy name'), - ('posturestate' ,'Posture state'), - ('powersavemode' ,'Power save mode'), -# ('protocol' ,'Protocol'), - ('quarantinevlan' ,'Quarantine VLAN'), - ('reasoncode' ,'Reason code'), - ('redirecturl' ,'Redirect URL'), - ('securitytagid' ,'Security tag ID'), - ('sessionid' ,'Session ID'), -# ('ssid' ,'SSID'), -# ('status' ,'Status'), - ('typekts' ,'NEC KTS SIP client'), -# ('uptime' ,'Uptime'), - ('userauthtype' ,'User auth type'), -# ('username' ,'Username'), - ('wgbmacaddress' ,'WGB MAC address'), - ('wgbstatus' ,'WGB status'), - ('wlanprofilename' ,'WLAN profile name'), -] - -register_rule('inventory', 'inv_parameters:inv_cisco_wlc_clients', - Dictionary( - title=_('Cisco WLC Client inventory'), - elements=[ - ('disable', - FixedValue(True, - title=_('disable inventory'), - )), - ('removecolumns', - ListChoice( - title=_('list of columns to remove'), - label=_('list of columns to remove'), - help=_('remove these columns from inventory'), - choices=removecolumns, - default_value=[], - )), - ], - ), - match='dict', -) - -- GitLab