diff options
-rw-r--r-- | sos/plugins/etcd.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sos/plugins/etcd.py b/sos/plugins/etcd.py index c8ee3849..1ad59322 100644 --- a/sos/plugins/etcd.py +++ b/sos/plugins/etcd.py @@ -30,7 +30,10 @@ class etcd(Plugin, RedHatPlugin): etcd_url = self.get_etcd_url() - self.add_forbidden_path('/etc/etcd/ca') + self.add_forbidden_path([ + '/etc/etcd/ca', + '/etc/etcd/*.key' + ]) self.add_copy_spec('/etc/etcd') subcmds = [ |