summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-oauthlib_0.7.2.bb
diff options
context:
space:
mode:
authorMark Asselstine <mark.asselstine@windriver.com>2017-11-22 11:08:44 -0500
committerBruce Ashfield <bruce.ashfield@windriver.com>2017-11-27 10:39:51 -0500
commit11295124b1e899d369ca53235626c2484cf65e37 (patch)
treedb048cacb7f726b9db4e95ea63aa585affc11de2 /meta-openstack/recipes-devtools/python/python-oauthlib_0.7.2.bb
parent63dacc37cabf9bbb325956c577591ca5db52118d (diff)
downloadmeta-cloud-services-11295124b1e899d369ca53235626c2484cf65e37.tar.gz
python-*: Set permissive perms
Keystone will fail with permission denied if we don't set more permissive permissions for the PGK-INFO files in these packages. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-oauthlib_0.7.2.bb')
-rw-r--r--meta-openstack/recipes-devtools/python/python-oauthlib_0.7.2.bb1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-oauthlib_0.7.2.bb b/meta-openstack/recipes-devtools/python/python-oauthlib_0.7.2.bb
index fe4560b..3b5d38f 100644
--- a/meta-openstack/recipes-devtools/python/python-oauthlib_0.7.2.bb
+++ b/meta-openstack/recipes-devtools/python/python-oauthlib_0.7.2.bb
@@ -21,6 +21,7 @@ RDEPENDS_${PN} += " \
21 21
22do_install_append() { 22do_install_append() {
23 perm_files=`find "${D}${PYTHON_SITEPACKAGES_DIR}/" -name "top_level.txt" -o -name "requires.txt"` 23 perm_files=`find "${D}${PYTHON_SITEPACKAGES_DIR}/" -name "top_level.txt" -o -name "requires.txt"`
24 perm_files="$perm_files "$(find "${D}${PYTHON_SITEPACKAGES_DIR}/" -name "PKG-INFO")
24 for f in $perm_files; do 25 for f in $perm_files; do
25 chmod 644 "${f}" 26 chmod 644 "${f}"
26 done 27 done