diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2014-01-31 16:03:31 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2014-01-31 16:03:31 +0000 |
commit | 43268795e09c91ef7cc8dbef3cb1ddfc5c2bf686 (patch) | |
tree | 9c6c8705e8073b9ae41ebf52c4bc6a090bbb5aab | |
parent | 3c52bbd14c881748998c0edfb328c8c0ca92842f (diff) | |
download | sos-43268795e09c91ef7cc8dbef3cb1ddfc5c2bf686.tar.gz |
Fix cluster postproc regression
Commit 4ab4b08 inadvertently removed the postprocessing rules for
luci configuration. Revert that part of the commit.
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/cluster.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sos/plugins/cluster.py b/sos/plugins/cluster.py index c2ce42b2..0fc4ded7 100644 --- a/sos/plugins/cluster.py +++ b/sos/plugins/cluster.py @@ -119,6 +119,8 @@ class Cluster(Plugin, RedHatPlugin): self.do_file_sub(cluster_conf, r"(\s*\<fencedevice\s*.*\s*passwd\s*=\s*)\S+(\")", r"\1%s" %('"***"')) + for luci_cfg in glob("/var/lib/luci/etc/*.ini*"): + self.do_file_sub(luci_cfg, r"(.*secret\s*=\s*)\S+", r"\1******") self.do_cmd_output_sub("corosync-objctl", r"(.*fence.*\.passwd=)(.*)", r"\1******") |