diff options
author | shnavid <shnavid@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2007-07-11 09:33:33 +0000 |
---|---|---|
committer | shnavid <shnavid@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2007-07-11 09:33:33 +0000 |
commit | c96eab04123db867ca2ef23f51dccea46e8b9801 (patch) | |
tree | 6f5a07c5d76d0d66a2bf26bad2b4a3d708101a4e | |
parent | b3ef33f3600b706b01356634d69e0ceb97bfa3d8 (diff) | |
download | sos-c96eab04123db867ca2ef23f51dccea46e8b9801.tar.gz |
* cmdline executable needs to be absolute
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/sos/trunk@194 ef72aa8b-4018-0410-8976-d6e080ef94d8
-rw-r--r-- | src/lib/sos/plugins/cluster.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/sos/plugins/cluster.py b/src/lib/sos/plugins/cluster.py index feaafc0e..bfd5184d 100644 --- a/src/lib/sos/plugins/cluster.py +++ b/src/lib/sos/plugins/cluster.py @@ -24,12 +24,12 @@ class cluster(sos.plugintools.PluginBase): self.addCopySpec("/etc/cluster") self.collectExtOutput("/usr/sbin/rg_test test /etc/cluster/cluster.conf") self.addCopySpec("/proc/cluster") - self.collectExtOutput("cman_tool status") - self.collectExtOutput("cman_tool services") - self.collectExtOutput("cman_tool -af nodes") - self.collectExtOutput("ccs_tool lsnode") - self.collectExtOutput("openais-cfgtool -s") - self.collectExtOutput("clustat") + self.collectExtOutput("/usr/bin/cman_tool status") + self.collectExtOutput("/usr/bin/cman_tool services") + self.collectExtOutput("/usr/bin/cman_tool -af nodes") + self.collectExtOutput("/usr/bin/ccs_tool lsnode") + self.collectExtOutput("/usr/bin/openais-cfgtool -s") + self.collectExtOutput("/usr/bin/clustat") return def postproc(self): |