From 77fec74c5b68130a409be87d29841b84f0da7564 Mon Sep 17 00:00:00 2001 From: Eric Harney Date: Wed, 5 Dec 2018 10:48:29 -0500 Subject: Change bash completion dir permissions to 0750 This is no reason for this dir to be world-readable. Change-Id: I50e85b5bb6116c64535ecbf09718141086c703c5 (cherry picked from commit 5d2116e7476fb294d70e763a6022abd7322407dd) --- cinderclient/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cinderclient/base.py b/cinderclient/base.py index 85dffb6..4e8218d 100644 --- a/cinderclient/base.py +++ b/cinderclient/base.py @@ -273,7 +273,7 @@ class Manager(common_base.HookableMixin): cache_dir = os.path.expanduser(os.path.join(base_dir, uniqifier)) try: - os.makedirs(cache_dir, 0o755) + os.makedirs(cache_dir, 0o750) except OSError: # NOTE(kiall): This is typically either permission denied while # attempting to create the directory, or the directory -- cgit v1.2.1