Revert "Revert "oran-shell-release: release image for F""
[pti/rtp.git] / meta-starlingx / meta-stx-cloud / recipes-devtools / python / files / python-keyring / remove_others_perms_on_keyringcfg_file.patch
1 ---
2  keyring/backends/file.py |    2 +-
3  1 file changed, 1 insertion(+), 1 deletion(-)
4
5 --- a/keyring/backends/file.py
6 +++ b/keyring/backends/file.py
7 @@ -149,7 +149,7 @@ class BaseKeyring(FileBacked, KeyringBac
8              # create the file without group/world permissions
9              with open(self.file_path, 'w'):
10                  pass
11 -            user_read_write = 0o644
12 +            user_read_write = 0o640
13              os.chmod(self.file_path, user_read_write)
14          if not os.path.isfile(lockdir + "/" + lockfile):
15              with open(lockdir + "/" + lockfile, 'w'):