Skip to content
Snippets Groups Projects
Commit 08bd99a5 authored by Ryan Hallisey's avatar Ryan Hallisey
Browse files

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
parent dcb607d3
No related branches found
No related tags found
No related merge requests found
#!/bin/sh #!/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." echo "Starting libvirtd."
exec /usr/sbin/libvirtd exec /usr/sbin/libvirtd
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment