diff options
author | astokes <astokes@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2009-09-08 16:26:24 +0000 |
---|---|---|
committer | astokes <astokes@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2009-09-08 16:26:24 +0000 |
commit | c915608457571de49983966d2a11fc82dabd1c8f (patch) | |
tree | ae9df723ea150000c04cac1e1d5efa76c9f7fa25 | |
parent | 4979b83ef97db776eace4a27c6b5686616f3bef0 (diff) | |
download | sos-c915608457571de49983966d2a11fc82dabd1c8f.tar.gz |
update to mangle pwds in cluster.conf and backups
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/sos/trunk@633 ef72aa8b-4018-0410-8976-d6e080ef94d8
-rw-r--r-- | src/lib/sos/plugins/cluster.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/sos/plugins/cluster.py b/src/lib/sos/plugins/cluster.py index 28495a06..afc45254 100644 --- a/src/lib/sos/plugins/cluster.py +++ b/src/lib/sos/plugins/cluster.py @@ -39,7 +39,7 @@ class cluster(sos.plugintools.PluginBase): def has_gfs(self): return (len(self.doRegexFindAll(r'^\S+\s+\S+\s+gfs\s+.*$', "/etc/mtab")) > 0) - + def diagnose(self): rhelver = self.policy().rhelVersion() @@ -193,6 +193,9 @@ class cluster(sos.plugintools.PluginBase): except: continue if locktable != cluster_name: self.addDiagnose("gfs mountpoint (%s) is using the wrong locking table" % fs[0]) + + # Test fence groups for valid id and state + self.test_fence_id() def setup(self): self.collectExtOutput("/sbin/fdisk -l") |