From 81fb2cfed6444554c41559ba81a95a4dd47bdae6 Mon Sep 17 00:00:00 2001 From: Adrian Dudau Date: Wed, 31 May 2017 11:07:20 +0200 Subject: python-keystone: Fix install error caused by invalid group MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The group 'users' doesn't exist in the target sysroot, leading to the following error: | Installing keystone-all script to /data/fb/addu/el/poky/build-vt-inteld/tmp/work/corei7-64-enea-linux/python-keystone/8.0.0+gitAUTOINC+8dcd82fb9c-r0/image/usr/bin | install: invalid group ‘users’ We might investigate this further at a later time, but for now just use the default to get it building. Signed-off-by: Adrian Dudau --- meta-openstack/recipes-devtools/python/python-keystone_git.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta-openstack/recipes-devtools/python') diff --git a/meta-openstack/recipes-devtools/python/python-keystone_git.bb b/meta-openstack/recipes-devtools/python/python-keystone_git.bb index 49aa530..6dfdc93 100644 --- a/meta-openstack/recipes-devtools/python/python-keystone_git.bb +++ b/meta-openstack/recipes-devtools/python/python-keystone_git.bb @@ -74,8 +74,8 @@ do_install_append() { install -m 755 -d ${APACHE_CONF_DIR} install -d ${D}${localstatedir}/log/${SRCNAME} - install -g users -m 755 -d ${KEYSTONE_CGI_DIR} - install -g users -m 755 -d ${KEYSTONE_PY_DIR} + install -m 755 -d ${KEYSTONE_CGI_DIR} + install -m 755 -d ${KEYSTONE_PY_DIR} # Apache needs to read the keystone.conf install -m 644 ${WORKDIR}/keystone.conf ${KEYSTONE_CONF_DIR}/ -- cgit v1.2.3-54-g00ecf