Work around nova-network launch issue

Launch nova-network *after* nova-cert to work around the SELinux error in
https://bugzilla.redhat.com/show_bug.cgi?id=857747

Change-Id: I2ca4af4b950cca92cdd2785c493d8453648ccbb0
Signed-off-by: Zane Bitter <zbitter@redhat.com>
This commit is contained in:
Zane Bitter 2012-09-16 20:49:05 +02:00
parent 137e359222
commit 77700c10bf

View File

@ -82,10 +82,9 @@ function os_start() {
then
sudo vgcreate nova-volumes $(sudo losetup --show -f /var/lib/nova/nova-volumes.img)
fi
for svc in api objectstore compute network volume scheduler cert
for svc in api cert objectstore compute network volume scheduler
do
sudo systemctl $action openstack-nova-$svc.service
sleep 1
done
}