diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2019-11-04 14:15:55 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2019-11-04 14:15:55 +0000 |
commit | 4d1576b04d35902ce44d26d6a5b2219e6f9c175a (patch) | |
tree | cc1d60e318ef33fef04cfac2a84941bd42ce6522 | |
parent | 27fc1711da698d5534d1958d78fcca2e23184d1f (diff) | |
download | sos-4d1576b04d35902ce44d26d6a5b2219e6f9c175a.tar.gz |
[openstack_octavia] fix directory blacklist style
Plugins must use 'path/to/exclude' rather than 'path/to/exclude/*'
in order to omit a directory and all its content from the report.
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/openstack_octavia.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/openstack_octavia.py b/sos/plugins/openstack_octavia.py index b97c83fa..ccdcd4c9 100644 --- a/sos/plugins/openstack_octavia.py +++ b/sos/plugins/openstack_octavia.py @@ -30,7 +30,7 @@ class OpenStackOctavia(Plugin): ]) # don't collect certificates - self.add_forbidden_path("/etc/octavia/certs/") + self.add_forbidden_path("/etc/octavia/certs") # logs if self.get_option("all_logs"): |