From 42f2fd86f3942529afe5c21a128c30fe7cf76c89 Mon Sep 17 00:00:00 2001 From: Zane Bitter Date: Mon, 17 Sep 2012 11:46:11 +0200 Subject: [PATCH] Work around nova-network launch issue harder Change-Id: Ia1bf8cb2f0e23755100713c1289baa371bbfb956 Signed-off-by: Zane Bitter --- tools/openstack | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tools/openstack b/tools/openstack index b48663f9..251b9501 100755 --- a/tools/openstack +++ b/tools/openstack @@ -82,10 +82,16 @@ function os_start() { then sudo vgcreate nova-volumes $(sudo losetup --show -f /var/lib/nova/nova-volumes.img) fi - for svc in api cert objectstore compute network volume scheduler + + for svc in api cert objectstore compute volume scheduler do sudo systemctl $action openstack-nova-$svc.service done + + # This must be started after openstack-nova-cert due to an SELinux + # policy problem. See https://bugzilla.redhat.com/show_bug.cgi?id=857747 + sleep 2 + sudo systemctl $action openstack-nova-network.service } function os_stop() { -- 2.45.2