diff options
author | Lee Yarwood <lyarwood@redhat.com> | 2017-10-12 12:40:33 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2018-04-16 15:23:25 +0100 |
commit | 0e5c6b490931e9b1ee2a7b64631a822232d60a68 (patch) | |
tree | 5836eca97461b22931964dd44a9abbc456ae1984 | |
parent | 54c28fd10a9656abe3726254b2e91c7c61c6413d (diff) | |
download | sos-0e5c6b490931e9b1ee2a7b64631a822232d60a68.tar.gz |
[openstack_nova] Add fixed_key to the list of protected keys
Resolves: #1123
Signed-off-by: Lee Yarwood <lyarwood@redhat.com>
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/openstack_nova.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/openstack_nova.py b/sos/plugins/openstack_nova.py index e8839a2a..5db79b9d 100644 --- a/sos/plugins/openstack_nova.py +++ b/sos/plugins/openstack_nova.py @@ -145,7 +145,7 @@ class OpenStackNova(Plugin): "xenapi_connection_password", "password", "host_password", "vnc_password", "connection", "sql_connection", "admin_password", "connection_password", "memcache_secret_key", "s3_secret_key", - "metadata_proxy_shared_secret" + "metadata_proxy_shared_secret", "fixed_key" ] regexp = r"((?m)^\s*(%s)\s*=\s*)(.*)" % "|".join(protect_keys) |