aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLee Yarwood <lyarwood@redhat.com>2014-03-04 16:18:00 +0000
committerLee Yarwood <lyarwood@redhat.com>2014-03-04 16:31:04 +0000
commit3758b10e367117945148c797b4b709d77277b84b (patch)
tree726f59adc47695bc4a0505fcefccf820e8ce684a
parent3dac227dde7af1168fa3c668836d7dde711981bd (diff)
downloadsos-3758b10e367117945148c797b4b709d77277b84b.tar.gz
Remove the rhevm plugin.
This functionality is now provided by the ovirt-log-collector project [1] and independently shipped VDSM sos plugin [2]. [1] http://gerrit.ovirt.org/gitweb?p=ovirt-log-collector.git [2] http://gerrit.ovirt.org/gitweb?p=vdsm.git;a=tree;f=vdsm/sos;hb=HEAD Signed-off-by: Lee Yarwood <lyarwood@redhat.com>
-rw-r--r--sos/plugins/rhevm.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/sos/plugins/rhevm.py b/sos/plugins/rhevm.py
deleted file mode 100644
index 8068e05c..00000000
--- a/sos/plugins/rhevm.py
+++ /dev/null
@@ -1,25 +0,0 @@
-from sos.plugins import Plugin, RedHatPlugin
-
-# Class name must be the same as file name and method names must not change
-class RhevM(Plugin, RedHatPlugin):
- """RHEV-Manager related information"""
-
- plugin_name = 'rhevm'
-
- option_list = [("vdsmlogs", 'Directory containing all of the SOS logs from the RHEV hypervisor(s)', '', False)]
-
- def setup(self):
- # Copy rhevm config files.
- self.add_copy_spec("/etc/rhevm")
- self.add_copy_spec("/var/log/rhevm")
- if self.get_option("vdsmlogs"):
- self.add_copy_spec(str(self.get_option("vdsmlogs")))
-
- def postproc(self):
- """
- Obfuscate passwords.
- """
-
- self.do_file_sub("/etc/rhevm/rhevm-config/rhevm-config.properties",
- r"Password.type=(.*)",
- r'Password.type=********')