diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2014-04-14 18:57:21 +0100 |
---|---|---|
committer | Pep Turro Mauri <pep@redhat.com> | 2014-06-26 22:19:07 +0200 |
commit | 5572c844e3e8ad63a62364fb72390eccf0398a40 (patch) | |
tree | 814d50cfca815084e1b732442a7f53160e83c0c2 | |
parent | 723649dbaaa435af00088b34af17a59d11e9d3ad (diff) | |
download | sos-5572c844e3e8ad63a62364fb72390eccf0398a40.tar.gz |
Remove redundant data collection from OpenShift plugin
OpenShift collects dhclient configuration and Apache httpd logs.
These are already handled by their respective plugins; remove
them from the OpenShift module.
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/openshift.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sos/plugins/openshift.py b/sos/plugins/openshift.py index a68a8855..5dab9f41 100644 --- a/sos/plugins/openshift.py +++ b/sos/plugins/openshift.py @@ -27,7 +27,6 @@ class Openshift(Plugin, RedHatPlugin): "/etc/openshift-enterprise-version", "/etc/openshift/", "/var/log/openshift/", - "/etc/dhcp/dhclient-*" ]) self.add_cmd_output("oo-diagnostics") @@ -58,7 +57,6 @@ class Openshift(Plugin, RedHatPlugin): "/var/log/mcollective.log", "/opt/rh/ruby193/root/etc/mcollective/", "/var/log/openshift-gears-async-start.log", - "/var/log/httpd/" ]) |