From 598a4a8619ea261372fe375052a16fde9f4f7ded Mon Sep 17 00:00:00 2001 From: "Bryn M. Reeves" Date: Sat, 13 Aug 2011 09:10:00 +0100 Subject: Add /proc/vmmemctl collection to vmware plugin Resolves: bz709491 --- sos/plugins/vmware.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- cgit