From 51643d2fea52fc37ae71ebb012b5425278326db3 Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Tue, 21 Oct 2014 09:56:01 -0700 Subject: [PATCH] Add missing libvirt-start.sh libvirt-start.sh was missing from nova-compute/nova-compute. Add it so libvirt is started from a fresh checkout of the repository. Change-Id: I8b40819629b16e4a63102eb353b3c8682791cf9d --- docker/nova-compute/nova-compute/libvirt-start.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 docker/nova-compute/nova-compute/libvirt-start.sh diff --git a/docker/nova-compute/nova-compute/libvirt-start.sh b/docker/nova-compute/nova-compute/libvirt-start.sh new file mode 100755 index 0000000000..63e7145510 --- /dev/null +++ b/docker/nova-compute/nova-compute/libvirt-start.sh @@ -0,0 +1,13 @@ +#!/bin/sh +#/bin/chmod 666 /dev/kvm + +echo "Starting guests." +/usr/libexec/libvirt-guests.sh start + +echo "Starting virtlockd." +/usr/sbin/virtlockd & + +sleep 3 + +echo "Starting libvirtd." +/usr/sbin/libvirtd &