sos/sos-cluster-enable-when-luci-only.patch
Bryn M. Reeves 89b86368f8 Update spec file for sos-3.2-1
Update sos in rawhide to the upstream 3.2 release and additional
patches including the fix for CVE-2015-7529.
2015-12-16 15:53:30 +00:00

34 lines
958 B
Diff

From f5211fd8725629e23a3a0f802bd6e635290dab36 Mon Sep 17 00:00:00 2001
From: Shane Bradley <sbradley@redhat.com>
Date: Tue, 10 Feb 2015 10:42:39 -0500
Subject: [PATCH] [cluster] add luci to packages for standalone luci servers
A host with only luci package installed would not collect luci logs
because the cluster plugin would not run since none of the packages
were found. This patch adds luci to the package set required for the
plugin to run.
Resolves: rhbz#1171186
Signed-off-by: Shane Bradley <sbradley@redhat.com>
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
---
sos/plugins/cluster.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/sos/plugins/cluster.py b/sos/plugins/cluster.py
index a84d3e2..7aeed44 100644
--- a/sos/plugins/cluster.py
+++ b/sos/plugins/cluster.py
@@ -32,6 +32,7 @@ class Cluster(Plugin, RedHatPlugin):
]
packages = [
+ "luci",
"ricci",
"corosync",
"openais",
--
1.8.3.1