X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=meta-starlingx%2Fmeta-stx-cloud%2Frecipes-devtools%2Fpython%2Ffiles%2Fpython-keyring%2Fremove_others_perms_on_keyringcfg_file.patch;fp=meta-starlingx%2Fmeta-stx-cloud%2Frecipes-devtools%2Fpython%2Ffiles%2Fpython-keyring%2Fremove_others_perms_on_keyringcfg_file.patch;h=0000000000000000000000000000000000000000;hb=6fc6934434f70595536a387ece31bc30141cafb5;hp=dcc4c2e05811bda787a5cb7b1011503d04d72b36;hpb=eb1e26510491ba49de693ab3b0498edcb06be6c5;p=pti%2Frtp.git diff --git a/meta-starlingx/meta-stx-cloud/recipes-devtools/python/files/python-keyring/remove_others_perms_on_keyringcfg_file.patch b/meta-starlingx/meta-stx-cloud/recipes-devtools/python/files/python-keyring/remove_others_perms_on_keyringcfg_file.patch deleted file mode 100644 index dcc4c2e..0000000 --- a/meta-starlingx/meta-stx-cloud/recipes-devtools/python/files/python-keyring/remove_others_perms_on_keyringcfg_file.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- - keyring/backends/file.py | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - ---- a/keyring/backends/file.py -+++ b/keyring/backends/file.py -@@ -149,7 +149,7 @@ class BaseKeyring(FileBacked, KeyringBac - # create the file without group/world permissions - with open(self.file_path, 'w'): - pass -- user_read_write = 0o644 -+ user_read_write = 0o640 - os.chmod(self.file_path, user_read_write) - if not os.path.isfile(lockdir + "/" + lockfile): - with open(lockdir + "/" + lockfile, 'w'):