From 484183c455ea4989b2091966a5045afa80063aa2 Mon Sep 17 00:00:00 2001
From: thl-cmk <thl-cmk@outlook.com>
Date: Sun, 23 Apr 2023 09:16:16 +0000
Subject: [PATCH] Delete inv_checkpoint_updates.py

---
 web/plugins/views/inv_checkpoint_updates.py | 32 ---------------------
 1 file changed, 32 deletions(-)
 delete mode 100644 web/plugins/views/inv_checkpoint_updates.py

diff --git a/web/plugins/views/inv_checkpoint_updates.py b/web/plugins/views/inv_checkpoint_updates.py
deleted file mode 100644
index 8e5eb6f..0000000
--- a/web/plugins/views/inv_checkpoint_updates.py
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/usr/bin/env python3
-# -*- coding: utf-8 -*-
-
-import cmk.gui.utils
-from cmk.gui.plugins.views import (
-    inventory_displayhints,)
-from cmk.gui.i18n import _
-
-inventory_displayhints.update({
-    '.software.check_point.updates:': {
-        'title': _('Updates'),
-        'keyorder': [
-            'file_name',
-            'type',
-            'status',
-            'recommended',
-            'available_since',
-            'installed_at',
-            'description'
-            ],
-        'view': 'invcheckpointupdates_of_host',
-        },
-    })
-
-from cmk.gui.plugins.views.inventory import declare_invtable_view
-
-declare_invtable_view(
-    'invcheckpointupdates',
-    '.software.check_point.updates:',
-    _('Check Point updates'),
-    _('Check Point updates'),
-)
-- 
GitLab