Merge "Test for presence of /dev/kvm before setting permissions"
This commit is contained in:
commit
309d363d45
@ -1,8 +1,11 @@
|
||||
#!/bin/sh
|
||||
|
||||
# If libvirt is not installed on the host permissions need to be set
|
||||
chmod 660 /dev/kvm
|
||||
chown root:kvm /dev/kvm
|
||||
# If running in qemu, we don't need to set anything as /dev/kvm won't exist
|
||||
if [[ -c /dev/kvm ]]; then
|
||||
chmod 660 /dev/kvm
|
||||
chown root:kvm /dev/kvm
|
||||
fi
|
||||
|
||||
echo "Starting libvirtd."
|
||||
exec /usr/sbin/libvirtd
|
||||
|
Loading…
x
Reference in New Issue
Block a user