diff options
| author | Mark Asselstine <mark.asselstine@windriver.com> | 2017-11-22 11:08:44 -0500 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2017-11-27 10:39:51 -0500 |
| commit | 11295124b1e899d369ca53235626c2484cf65e37 (patch) | |
| tree | db048cacb7f726b9db4e95ea63aa585affc11de2 /meta-openstack/recipes-devtools/python/python-oauth2_1.5.211.bb | |
| parent | 63dacc37cabf9bbb325956c577591ca5db52118d (diff) | |
| download | meta-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-oauth2_1.5.211.bb')
| -rw-r--r-- | meta-openstack/recipes-devtools/python/python-oauth2_1.5.211.bb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-oauth2_1.5.211.bb b/meta-openstack/recipes-devtools/python/python-oauth2_1.5.211.bb index 21a0585..aa04663 100644 --- a/meta-openstack/recipes-devtools/python/python-oauth2_1.5.211.bb +++ b/meta-openstack/recipes-devtools/python/python-oauth2_1.5.211.bb | |||
| @@ -15,3 +15,11 @@ RDEPENDS_${PN} += "python-prettytable \ | |||
| 15 | python-mccabe \ | 15 | python-mccabe \ |
| 16 | python-pep8 \ | 16 | python-pep8 \ |
| 17 | python-pyflakes" | 17 | python-pyflakes" |
| 18 | |||
| 19 | |||
| 20 | do_install_append() { | ||
| 21 | perm_files=$(find "${D}${PYTHON_SITEPACKAGES_DIR}/" -name "PKG-INFO") | ||
| 22 | for f in $perm_files; do | ||
| 23 | chmod 644 "${f}" | ||
| 24 | done | ||
| 25 | } | ||
