diff options
-rw-r--r-- | sos/plugins/gluster.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sos/plugins/gluster.py b/sos/plugins/gluster.py index 27c69b5a..bf5b25c7 100644 --- a/sos/plugins/gluster.py +++ b/sos/plugins/gluster.py @@ -22,5 +22,6 @@ class gluster(sos.plugintools.PluginBase): return os.path.exists("/etc/glusterd") def setup(self): - self.addCopySpec("/etc/glusterd/") - self.addCopySpec("/var/log/glusterfs/") + self.addForbiddenPath("/etc/glusterd/geo-replication/secret.pem") + self.addCopySpec("/etc/glusterd") + self.addCopySpec("/var/log/glusterfs") |