Merge "Load appropriate modules for libvirt"

This commit is contained in:
Jenkins 2015-04-03 18:01:15 +00:00 committed by Gerrit Code Review
commit 0573da4424

View File

@ -1,5 +1,16 @@
#!/bin/sh
if [[ $(cat /proc/cpuinfo | grep vmx) ]]; then
modprobe kvm_intel
elif [[ $(cat /proc/cpuinfo | grep svm) ]]; then
modprobe kvm_amd
else
echo "WARNING: Your hardware does not support hardware virtualization -" \
"using qemu software virtualization instead"
fi
modprobe ip6_tables ip_tables ebtable_nat
# If libvirt is not installed on the host permissions need to be set
# If running in qemu, we don't need to set anything as /dev/kvm won't exist
if [[ -c /dev/kvm ]]; then