From afc480f66ff3ce37dbcc6ff389aaa491d6f1ab85 Mon Sep 17 00:00:00 2001 From: James Shubin Date: Mon, 5 May 2014 18:29:09 -0400 Subject: Set the libvirt driver to use accelerated kvm. This wasn't necessary in previous versions of vagrant-libvirt because this option specified the uri, and the domain type defaulted to kvm. In newer releases, you have to specify this for performance, otherwise it will default to qemu software only virtualization. This depends on: https://github.com/pradels/vagrant-libvirt/commit/67734f003273d3fadcca3893c994f691fee1b629 also available at: https://github.com/purpleidea/vagrant-libvirt/commit/67734f003273d3fadcca3893c994f691fee1b629 --- vagrant/gluster/Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vagrant/gluster/Vagrantfile b/vagrant/gluster/Vagrantfile index cdb71d0..6f65ec9 100644 --- a/vagrant/gluster/Vagrantfile +++ b/vagrant/gluster/Vagrantfile @@ -575,7 +575,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| # libvirt # config.vm.provider :libvirt do |libvirt| - libvirt.driver = 'qemu' + libvirt.driver = 'kvm' # needed for kvm performance benefits ! # leave out to connect directly with qemu:///system #libvirt.host = 'localhost' libvirt.connect_via_ssh = false -- cgit