diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2012-11-29 18:55:39 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2012-11-29 18:55:39 +0000 |
commit | 3d314347cafa7e39b50f61f033a552714ecde74a (patch) | |
tree | c1e2faf536a8f3b4ace26be288271b88415d6dee | |
parent | 64182e4154b270d4862d278464f085e01132894d (diff) | |
download | sos-3d314347cafa7e39b50f61f033a552714ecde74a.tar.gz |
Add /proc/vmmemctl collection to vmware plugin
-rw-r--r-- | sos/plugins/vmware.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sos/plugins/vmware.py b/sos/plugins/vmware.py index 46b25792..66826443 100644 --- a/sos/plugins/vmware.py +++ b/sos/plugins/vmware.py @@ -19,8 +19,10 @@ class vmware(Plugin, RedHatPlugin): """VMWare related information """ - files = ('/usr/bin/vmware',) + files = ('/usr/bin/vmware','/usr/init.d/vmware-tools') def setup(self): self.collectExtOutput("/usr/bin/vmware -v") - self.addCopySpecs(["/etc/vmware/locations", "/etc/vmware/config"]) + self.addCopySpecs(["/etc/vmware/locations", + "/etc/vmware/config", + "/proc/vmmemctl"]) |