diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2014-09-14 23:34:37 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2014-09-16 11:06:24 +0100 |
commit | 28fc90c4c516c0dc95078c4d01a9fa328107350c (patch) | |
tree | 128544b413392209e73c0962617cf6a0d941842e | |
parent | 01564fb0130168e2718eaf56d1dc722910fabded (diff) | |
download | sos-28fc90c4c516c0dc95078c4d01a9fa328107350c.tar.gz |
[apache,selinux,openshift] add OpenShift profile
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/apache.py | 2 | ||||
-rw-r--r-- | sos/plugins/openshift.py | 2 | ||||
-rw-r--r-- | sos/plugins/selinux.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sos/plugins/apache.py b/sos/plugins/apache.py index 5875a829..84f0cb58 100644 --- a/sos/plugins/apache.py +++ b/sos/plugins/apache.py @@ -19,7 +19,7 @@ class Apache(Plugin): """Apache related information """ plugin_name = "apache" - profiles = ('webserver',) + profiles = ('webserver', 'openshift') option_list = [ ("log", "gathers all apache logs", "slow", False) diff --git a/sos/plugins/openshift.py b/sos/plugins/openshift.py index 22776c14..44eb8091 100644 --- a/sos/plugins/openshift.py +++ b/sos/plugins/openshift.py @@ -20,7 +20,7 @@ class Openshift(Plugin, RedHatPlugin): '''Openshift related information''' plugin_name = "openshift" - profiles = ('virt',) + profiles = ('virt', 'openshift') # The 'broker' and 'node' options are obsolete but are maintained # here for compatibility with external programs that call sosreport diff --git a/sos/plugins/selinux.py b/sos/plugins/selinux.py index 5839ed5d..22ac2522 100644 --- a/sos/plugins/selinux.py +++ b/sos/plugins/selinux.py @@ -20,7 +20,7 @@ class SELinux(Plugin, RedHatPlugin): """ plugin_name = 'selinux' - profiles = ('system', 'security') + profiles = ('system', 'security', 'openshift') option_list = [("fixfiles", 'Print incorrect file context labels', 'slow', False), |