aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sos/plugins/ceph.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/sos/plugins/ceph.py b/sos/plugins/ceph.py
index 10fee88c..74b7c4c6 100644
--- a/sos/plugins/ceph.py
+++ b/sos/plugins/ceph.py
@@ -59,11 +59,12 @@ class Ceph(Plugin, RedHatPlugin, UbuntuPlugin):
"ceph report"
])
- self.add_forbidden_path("/etc/ceph/*keyring")
- self.add_forbidden_path("/var/lib/ceph/*keyring")
- self.add_forbidden_path("/var/lib/ceph/*/*keyring")
- self.add_forbidden_path("/var/lib/ceph/*/*/*keyring")
+ self.add_forbidden_path("/etc/ceph/*keyring*")
+ self.add_forbidden_path("/var/lib/ceph/*keyring*")
+ self.add_forbidden_path("/var/lib/ceph/*/*keyring*")
+ self.add_forbidden_path("/var/lib/ceph/*/*/*keyring*")
self.add_forbidden_path("/var/lib/ceph/osd/*")
self.add_forbidden_path("/var/lib/ceph/osd/mon/*")
+ self.add_forbidden_path("/etc/ceph/*bindpass*")
# vim: set et ts=4 sw=4 :