diff options
author | Pep Turro Mauri <pep@redhat.com> | 2014-06-17 23:50:27 +0200 |
---|---|---|
committer | Pep Turro Mauri <pep@redhat.com> | 2014-06-26 22:20:06 +0200 |
commit | eb0d0c603793cb3dbda37957007ffe9238345af7 (patch) | |
tree | 8dc08b84822013cc10fb3d75e38949ffe117986b | |
parent | 628895e6be1e26f3972342657985be06549548ef (diff) | |
download | sos-eb0d0c603793cb3dbda37957007ffe9238345af7.tar.gz |
[openshift] Get SELinux labels and add verbosity
Signed-off-by: Pep Turró Mauri <pep@redhat.com>
-rw-r--r-- | sos/plugins/openshift.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sos/plugins/openshift.py b/sos/plugins/openshift.py index 5b3177d0..7469dce2 100644 --- a/sos/plugins/openshift.py +++ b/sos/plugins/openshift.py @@ -42,7 +42,7 @@ class Openshift(Plugin, RedHatPlugin): "/etc/openshift/" ]) - self.add_cmd_output("oo-diagnostics") + self.add_cmd_output("oo-diagnostics -v") if self.is_broker(): self.add_copy_specs([ @@ -72,7 +72,7 @@ class Openshift(Plugin, RedHatPlugin): self.add_cmd_outputs([ "oo-accept-node -v", "oo-admin-ctl-gears list", - "ls -l /var/lib/openshift" + "ls -laZ /var/lib/openshift" ]) def postproc(self): |