diff options
| author | Adrian Dudau <adrian.dudau@enea.com> | 2017-05-31 11:07:20 +0200 |
|---|---|---|
| committer | Adrian Dudau <adrian.dudau@enea.com> | 2017-06-07 11:44:16 +0200 |
| commit | 81fb2cfed6444554c41559ba81a95a4dd47bdae6 (patch) | |
| tree | 988148497bb41eff2f4e308e1433cbedd5fe98c0 /meta-openstack/recipes-devtools/python/python-keystone_git.bb | |
| parent | c2d6d42d5258de8d14195b40ac330e2a8471d284 (diff) | |
| download | meta-cloud-services-81fb2cfed6444554c41559ba81a95a4dd47bdae6.tar.gz | |
python-keystone: Fix install error caused by invalid group
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 <adrian.dudau@enea.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-keystone_git.bb')
| -rw-r--r-- | meta-openstack/recipes-devtools/python/python-keystone_git.bb | 4 |
1 files changed, 2 insertions, 2 deletions
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() { | |||
| 74 | install -m 755 -d ${APACHE_CONF_DIR} | 74 | install -m 755 -d ${APACHE_CONF_DIR} |
| 75 | 75 | ||
| 76 | install -d ${D}${localstatedir}/log/${SRCNAME} | 76 | install -d ${D}${localstatedir}/log/${SRCNAME} |
| 77 | install -g users -m 755 -d ${KEYSTONE_CGI_DIR} | 77 | install -m 755 -d ${KEYSTONE_CGI_DIR} |
| 78 | install -g users -m 755 -d ${KEYSTONE_PY_DIR} | 78 | install -m 755 -d ${KEYSTONE_PY_DIR} |
| 79 | 79 | ||
| 80 | # Apache needs to read the keystone.conf | 80 | # Apache needs to read the keystone.conf |
| 81 | install -m 644 ${WORKDIR}/keystone.conf ${KEYSTONE_CONF_DIR}/ | 81 | install -m 644 ${WORKDIR}/keystone.conf ${KEYSTONE_CONF_DIR}/ |
