diff options
author | 2013-10-04 15:02:07 -0400 | |
---|---|---|
committer | 2013-10-04 15:03:05 -0400 | |
commit | 2d94422db8c142993f59a277ea945b048bfd1979 (patch) | |
tree | 71a39f6d00cb4354227e176a1c0babdae20be428 | |
parent | c0597bd24de0d12d46d70140f1ba4a1d94b2b846 (diff) | |
download | meta-cloud-services-2d94422db8c142993f59a277ea945b048bfd1979.tar.gz meta-cloud-services-2d94422db8c142993f59a277ea945b048bfd1979.tar.bz2 meta-cloud-services-2d94422db8c142993f59a277ea945b048bfd1979.zip |
nova: inherit useradd.bbclass
After the merging of python-nova-controller and python-nova-compute, we were
missing the inherit of useradd bbclass. As a result, there wasn't a valid
nova user and group on the system.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r-- | meta-openstack/recipes-devtools/python/python-nova_2013.1.3.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-nova_2013.1.3.bb b/meta-openstack/recipes-devtools/python/python-nova_2013.1.3.bb index 35525923..5fb6f3fd 100644 --- a/meta-openstack/recipes-devtools/python/python-nova_2013.1.3.bb +++ b/meta-openstack/recipes-devtools/python/python-nova_2013.1.3.bb @@ -28,7 +28,7 @@ SRC_URI[sha256sum] = "f7c25186920daccb16867c5fd272318beb8cc076e5a55f79b5906618ef S = "${WORKDIR}/${SRCNAME}-${PV}" -inherit update-rc.d setuptools identity hosts +inherit update-rc.d setuptools identity hosts useradd do_install_append() { if [ ! -f "${WORKDIR}/nova.conf" ]; then |