diff options
-rw-r--r-- | sos/plugins/vmware.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sos/plugins/vmware.py b/sos/plugins/vmware.py index 7891576d..11212cb8 100644 --- a/sos/plugins/vmware.py +++ b/sos/plugins/vmware.py @@ -19,7 +19,7 @@ class vmware(sos.plugintools.PluginBase): """VMWare related information """ def checkenabled(self): - if os.path.exists("/usr/bin/vmware"): + if os.path.exists("/usr/bin/vmware") or os.path.exists("/usr/init.d/vmware-tools"): return True return False @@ -27,4 +27,5 @@ class vmware(sos.plugintools.PluginBase): self.collectExtOutput("/usr/bin/vmware -v") self.addCopySpec("/etc/vmware/locations") self.addCopySpec("/etc/vmware/config") + self.addCopySpec("/proc/vmmemctl") return |