From 08bd99a50fcc48539e69ff65334f8e22c4d25f6f Mon Sep 17 00:00:00 2001 From: Ryan Hallisey Date: Mon, 16 Mar 2015 15:51:33 -0400 Subject: [PATCH] Nova boot will fail if the host doesn't have libvirt installed Libvirt contains a package that sets the permissions of KVM. If the host does not have libvirt installed the permissions will never be set and nova boot will fail. Change-Id: Ie5509199391db55e0984d59a6623f021f3ae46c1 --- docker/nova-compute/nova-libvirt/start.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docker/nova-compute/nova-libvirt/start.sh b/docker/nova-compute/nova-libvirt/start.sh index 740f67f67d..d92f52ab0e 100755 --- a/docker/nova-compute/nova-libvirt/start.sh +++ b/docker/nova-compute/nova-libvirt/start.sh @@ -1,3 +1,8 @@ #!/bin/sh + +# If libvirt is not installed on the host permissions need to be set +chmod 660 /dev/kvm +chown root:kvm /dev/kvm + echo "Starting libvirtd." exec /usr/sbin/libvirtd