summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXulin Sun <xulin.sun@windriver.com>2016-06-07 09:47:06 +0800
committerBruce Ashfield <bruce.ashfield@windriver.com>2016-06-07 09:22:19 -0400
commit7a513734347e9969fb5caddab0b31910f46dbfb0 (patch)
tree4d9e35dcec4da5273fc6cb2b8930a04268b1f3db
parent9b9f984c64896020d440b15eee54bafd0289b34d (diff)
downloadmeta-cloud-services-7a513734347e9969fb5caddab0b31910f46dbfb0.tar.gz
python-keystone: fix QA warning of host uid contamination
QA Issue: python-keystone: /keystone/usr/share/openstack-dashboard/openstack_dashboard/api/keystone-httpd.py is owned by gid 100, which is the same as the user running bitbake. This may be due to host contamination [host-user-contaminated] Signed-off-by: Xulin Sun <xulin.sun@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r--meta-openstack/recipes-devtools/python/python-keystone_git.bb6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-keystone_git.bb b/meta-openstack/recipes-devtools/python/python-keystone_git.bb
index a8d1181..4bd739a 100644
--- a/meta-openstack/recipes-devtools/python/python-keystone_git.bb
+++ b/meta-openstack/recipes-devtools/python/python-keystone_git.bb
@@ -91,11 +91,11 @@ do_install_append() {
91 ${KEYSTONE_CONF_DIR}/policy.json 91 ${KEYSTONE_CONF_DIR}/policy.json
92 install -m 644 ${S}${sysconfdir}/keystone-paste.ini \ 92 install -m 644 ${S}${sysconfdir}/keystone-paste.ini \
93 ${KEYSTONE_CONF_DIR}/keystone-paste.ini 93 ${KEYSTONE_CONF_DIR}/keystone-paste.ini
94 install -g users -m 644 ${S}/httpd/keystone.py \ 94 install -m 644 ${S}/httpd/keystone.py \
95 ${KEYSTONE_PY_DIR}/keystone-httpd.py 95 ${KEYSTONE_PY_DIR}/keystone-httpd.py
96 install -g users -m 644 ${S}/httpd/keystone.py \ 96 install -m 644 ${S}/httpd/keystone.py \
97 ${KEYSTONE_CGI_DIR}/admin 97 ${KEYSTONE_CGI_DIR}/admin
98 install -g users -m 644 ${S}/httpd/keystone.py \ 98 install -m 644 ${S}/httpd/keystone.py \
99 ${KEYSTONE_CGI_DIR}/main 99 ${KEYSTONE_CGI_DIR}/main
100 100
101 cp -r ${S}/examples ${KEYSTONE_PACKAGE_DIR} 101 cp -r ${S}/examples ${KEYSTONE_PACKAGE_DIR}