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 484183c4 authored by thl-cmk's avatar thl-cmk :flag_na:
Browse files

Delete inv_checkpoint_updates.py

parent 10791f20
No related branches found
No related tags found
No related merge requests found
#!/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'),
)
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