test/expected_output/kvm/libvirt/Vagrantfile in vagrant-mutate-0.2.3 vs test/expected_output/kvm/libvirt/Vagrantfile in vagrant-mutate-0.2.4

- old
+ new

@@ -1,11 +1,5 @@ -Vagrant::Config.run do |config| - # This Vagrantfile is auto-generated by `vagrant package` to contain - # the MAC address of the box. Custom configuration should be placed in - # the actual `Vagrantfile` in this box. - config.vm.base_mac = "08002755B88D" +Vagrant.configure("2") do |config| + config.vm.provider :libvirt do |libvirt| + libvirt.disk_bus = 'virtio' + end end - -# Load include vagrant file if it exists after the auto-generated -# so it can override any of the settings -include_vagrantfile = File.expand_path("../include/_Vagrantfile", __FILE__) -load include_vagrantfile if File.exist?(include_vagrantfile)