From ce709c7f312f3c18e971c9338a4e82f47b596b99 Mon Sep 17 00:00:00 2001 From: Mark Asselstine Date: Mon, 6 Nov 2017 12:02:20 -0500 Subject: python-keystone: remove use of the 'users' group The use of the 'users' group was associated with the addition of apache vhost support. See commit bf51fa4f053a [python-keystone: Add apache vhost server.]. The directories and files needed to be readable by the same user running apache. Since the use of RSS, definiing a common group used by multiple recipes (apache and keystone in this case) becomes more involved and we need to use FILESYSTEM_PERMS_TABLES to accomplish this. Remove the use of the 'users' group until we can evaluate if this is still required and if so we have a proper FILESYSTEM_PERMS_TABLES solution in place. This will solve build failures for 'unknown group "users"' in the interim. Signed-off-by: Mark Asselstine Signed-off-by: Bruce Ashfield --- meta-openstack/recipes-devtools/python/python-keystone_git.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta-openstack/recipes-devtools/python/python-keystone_git.bb') 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