From 8fea32830fa74e221e4c9106dfcbd740066757a1 Mon Sep 17 00:00:00 2001 From: thl-cmk <thl-cmk@outlook.com> Date: Mon, 20 Feb 2023 18:49:57 +0000 Subject: [PATCH] Delete inv_cisco_cellular_lte.py --- web/plugins/views/inv_cisco_cellular_lte.py | 50 --------------------- 1 file changed, 50 deletions(-) delete mode 100644 web/plugins/views/inv_cisco_cellular_lte.py diff --git a/web/plugins/views/inv_cisco_cellular_lte.py b/web/plugins/views/inv_cisco_cellular_lte.py deleted file mode 100644 index 61170d7..0000000 --- a/web/plugins/views/inv_cisco_cellular_lte.py +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# -# License: GNU General Public License v2 -# -# Author: thl-cmk[at]outlook[dot]com -# URL : https://thl-cmk.hopto.org -# Date : 2022-09-26 -# File : view/inv_cisco_cellular_lte.py -# - -from cmk.gui.i18n import _ -from cmk.gui.plugins.views import ( - inventory_displayhints, -) - -from cmk.gui.plugins.views.inventory import declare_invtable_view - -inventory_displayhints.update({ - '.networking.cellular:': { - 'title': _('Cellular (LTE)'), - 'keyorder': [ - 'imei', - 'iccid', - 'imsi', - 'fsn', - 'network', - 'country', - 'apn', - 'service_type' - ], - 'view': 'invcellularlte_of_host', - }, - '.networking.cellular:*.iccid': {'short': _('ICC ID'), 'title': _('Integrated Circuit Card ID (ICC ID)')}, - '.networking.cellular:*.imei': {'short': _('IMEI'), 'title': _('International Mobile Equipment Identifier (IMEI)')}, - '.networking.cellular:*.imsi': {'short': _('IMSI'), - 'title': _('International Mobile Subscriber Identifier (IMSI)')}, - '.networking.cellular:*.msisdn': { - 'short': _('MSISDN'), - 'title': _('Mobile Subscriber Integrated Services Digital Network Number (MSISDN') - }, - '.networking.cellular:*.fsn': {'short': _('FSN'), 'title': _('Factory serial Number (FSN)')}, - '.networking.cellular:*.country': {'title': _('Country'), }, - '.networking.cellular:*.network': {'title': _('Network'), }, - '.networking.cellular:*.current_band': {'title': _('Current band'), }, - '.networking.cellular:*.apn': {'short': _('APN'), 'title': _('Access Point Name (APN)')}, - '.networking.cellular:*.service_type': {'title': _('Service type'), }, -}) - -declare_invtable_view('invcellularlte', '.networking.cellular:', _('Cellular (LTE)'), _('Cellular (LTE)')) -- GitLab