37 lines
1.1 KiB
Diff
37 lines
1.1 KiB
Diff
From 5b5302e7a7b1931d51e4960a9a56f14cd0c855c1 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Renaud=20M=C3=A9trich?= <rmetrich@redhat.com>
|
|
Date: Tue, 10 Mar 2020 13:38:55 +0100
|
|
Subject: [PATCH] [selinux] collect /var/lib/selinux
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
On RHEL 8, modules and contexts are not in /etc/selinux/<policy>
|
|
directory anymore, but in /var/lib/selinux/<policy> directory.
|
|
|
|
Resolves: #1976
|
|
|
|
Signed-off-by: Renaud Métrich <rmetrich@redhat.com>
|
|
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
---
|
|
sos/plugins/selinux.py | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/sos/plugins/selinux.py b/sos/plugins/selinux.py
|
|
index 1e9f24ca..d98b6745 100644
|
|
--- a/sos/plugins/selinux.py
|
|
+++ b/sos/plugins/selinux.py
|
|
@@ -23,7 +23,8 @@ class SELinux(Plugin, RedHatPlugin):
|
|
def setup(self):
|
|
self.add_copy_spec([
|
|
'/etc/sestatus.conf',
|
|
- '/etc/selinux'
|
|
+ '/etc/selinux',
|
|
+ '/var/lib/selinux'
|
|
])
|
|
self.add_cmd_output('sestatus')
|
|
|
|
--
|
|
2.26.2
|
|
|