aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJake Hunsaker <jhunsake@redhat.com>2021-05-17 19:32:06 -0400
committerJake Hunsaker <jhunsake@redhat.com>2021-05-19 10:47:15 -0400
commit3f5c4784af818959f9b2d942f0fc9f2ca50ac36c (patch)
treea9765bd1705f13133f1dcc0ebc0e90957de8564f
parentba127254578aa7a4603f0a27cee2db2649bae02e (diff)
downloadsos-3f5c4784af818959f9b2d942f0fc9f2ca50ac36c.tar.gz
[plugins] Add missing short_desc to plugins
Adds a `short_desc` attribute to several plugins missing it. Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
-rw-r--r--sos/report/plugins/cobbler.py3
-rw-r--r--sos/report/plugins/hyperv.py1
-rw-r--r--sos/report/plugins/openstack_barbican.py3
-rw-r--r--sos/report/plugins/tigervnc.py1
4 files changed, 5 insertions, 3 deletions
diff --git a/sos/report/plugins/cobbler.py b/sos/report/plugins/cobbler.py
index 471abec0..3cad2091 100644
--- a/sos/report/plugins/cobbler.py
+++ b/sos/report/plugins/cobbler.py
@@ -11,12 +11,11 @@ from sos.report.plugins import Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin
class Cobbler(Plugin):
plugin_name = "cobbler"
+ short_desc = 'Cobbler installation server'
class RedHatCobbler(Cobbler, RedHatPlugin):
- short_desc = 'Cobbler installation server'
-
packages = ('cobbler',)
profiles = ('cluster', 'sysmgmt')
diff --git a/sos/report/plugins/hyperv.py b/sos/report/plugins/hyperv.py
index 984b01d9..83ac2eb7 100644
--- a/sos/report/plugins/hyperv.py
+++ b/sos/report/plugins/hyperv.py
@@ -12,6 +12,7 @@ from sos.report.plugins import Plugin, IndependentPlugin
class Hyperv(Plugin, IndependentPlugin):
"""Hyper-V client information"""
+ short_desc = 'Microsoft Hyper-V client information'
plugin_name = "hyperv"
files = ('/sys/bus/vmbus/',)
diff --git a/sos/report/plugins/openstack_barbican.py b/sos/report/plugins/openstack_barbican.py
index 8566eedf..8b8eb1c4 100644
--- a/sos/report/plugins/openstack_barbican.py
+++ b/sos/report/plugins/openstack_barbican.py
@@ -12,7 +12,8 @@ from sos.report.plugins import Plugin, DebianPlugin, UbuntuPlugin
class OpenStackBarbican(Plugin, DebianPlugin, UbuntuPlugin):
- """OpenStack Barbican Secure storage service"""
+
+ short_desc = "OpenStack Barbican Secure storage service"
plugin_name = "openstack_barbican"
profiles = ('openstack', 'openstack_controller')
diff --git a/sos/report/plugins/tigervnc.py b/sos/report/plugins/tigervnc.py
index d24d5708..1302f6d4 100644
--- a/sos/report/plugins/tigervnc.py
+++ b/sos/report/plugins/tigervnc.py
@@ -13,6 +13,7 @@ from sos.report.plugins import Plugin, RedHatPlugin
class TigerVNC(Plugin, RedHatPlugin):
+ short_desc = 'TigerVNC server configuration'
plugin_name = 'tigervnc'
packages = ('tigervnc-server',)