From ccbf333aebd4c0586347de5991b62a50928858b7 Mon Sep 17 00:00:00 2001 From: "Bryn M. Reeves" Date: Tue, 16 Dec 2014 15:28:33 +0000 Subject: [selinux] capture process SELinux domains Signed-off-by: Bryn M. Reeves --- sos/plugins/selinux.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sos/plugins/selinux.py b/sos/plugins/selinux.py index c46e91a2..c914a9b1 100644 --- a/sos/plugins/selinux.py +++ b/sos/plugins/selinux.py @@ -28,7 +28,6 @@ class SELinux(Plugin, RedHatPlugin): packages = ('libselinux',) def setup(self): - # sestatus is always collected in check_enabled() self.add_copy_spec("/etc/selinux") self.add_cmd_output([ "sestatus -b", @@ -36,7 +35,8 @@ class SELinux(Plugin, RedHatPlugin): "selinuxdefcon root", "selinuxconlist root", "selinuxexeccon /bin/passwd", - "semanage -o -" + "semanage -o -", + "ps axuZww" ]) if self.get_option('fixfiles'): self.add_cmd_output("fixfiles -v check") -- cgit