Default to kvm domain type

This commit is contained in:
Brian Pitts
2014-05-10 22:42:38 -05:00
parent 950c110390
commit 60ab03a3b3
3 changed files with 6 additions and 5 deletions

View File

@@ -33,10 +33,11 @@ Vagrant.configure("2") do |config|
# A hypervisor name to access. Different drivers can be specified, but
# this version of provider creates KVM machines only. Some examples of
# drivers are qemu (KVM/qemu), xen (Xen hypervisor), lxc (Linux Containers),
# drivers are kvm (qemu hardware accelerated), qemu (qemu emulated),
# xen (Xen hypervisor), lxc (Linux Containers),
# esx (VMware ESX), vmwarews (VMware Workstation) and more. Refer to
# documentation for available drivers (http://libvirt.org/drivers.html).
libvirt.driver = "qemu"
libvirt.driver = "kvm"
# The name of the server, where libvirtd is running.
libvirt.host = "localhost"