diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2014-03-11 15:47:49 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2014-03-11 15:47:49 +0000 |
commit | c7a54c4c5b1e6e0596429e22084658ce935d7283 (patch) | |
tree | 6da8522db6b9bab34fac8ce35d5c943d7e7c2779 | |
parent | 877f93bcd469b939ec044539b9ea4a0d33e9f177 (diff) | |
parent | 3758b10e367117945148c797b4b709d77277b84b (diff) | |
download | sos-c7a54c4c5b1e6e0596429e22084658ce935d7283.tar.gz |
Merge pull request #235 from leeyarwood/master
Remove the rhevm plugin.
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/rhevm.py | 25 |
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=********') |