From a883e5aa5fe5d98646293279787b324ca90f2e12 Mon Sep 17 00:00:00 2001 From: "Bryn M. Reeves" Date: Thu, 5 Jun 2014 12:37:49 -0400 Subject: [ovirt] add package list to ovirt plugin Make sure that the oVirt plugin only runs if the ovirt-engine package is present. This will need to be expanded when the ovirt-engine-dwh and ovirt-engine-reports support is merged (Issue #236 and Issue #237). Signed-off-by: Brym M. Reeves --- sos/plugins/ovirt.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sos/plugins/ovirt.py b/sos/plugins/ovirt.py index acd6ad3e..c6f89577 100644 --- a/sos/plugins/ovirt.py +++ b/sos/plugins/ovirt.py @@ -28,6 +28,8 @@ from sos.plugins import Plugin, RedHatPlugin class Ovirt(Plugin, RedHatPlugin): """oVirt Engine related information""" + packages = ('ovirt-engine',) + DB_PASS_FILES = re.compile( flags=re.VERBOSE, pattern=r""" -- cgit