diff options
Diffstat (limited to 'vagrant/freebsd12/Vagrantfile')
-rw-r--r-- | vagrant/freebsd12/Vagrantfile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/vagrant/freebsd12/Vagrantfile b/vagrant/freebsd12/Vagrantfile index 213c18c..d48bc11 100644 --- a/vagrant/freebsd12/Vagrantfile +++ b/vagrant/freebsd12/Vagrantfile @@ -14,6 +14,9 @@ Vagrant.configure("2") do |config| config.vm.provider "virtualbox" do |v| v.name = "bindfs-freebsd12" end + config.vm.provider "libvirt" do |v| + v.driver = if File.exist?('/dev/kvm') then 'kvm' else 'qemu' end + end config.vm.provision "shell", inline: <<-SHELL pkg update |