diff --git a/Vagrantfile-uefi.template b/Vagrantfile-uefi.template index db7103c..82fe8fa 100644 --- a/Vagrantfile-uefi.template +++ b/Vagrantfile-uefi.template @@ -4,6 +4,8 @@ Vagrant.configure(2) do |config| lv.loader = '/usr/share/ovmf/OVMF.fd' lv.graphics_type = 'spice' lv.video_type = 'qxl' + lv.disk_bus = 'scsi' + lv.disk_device = 'sda' lv.channel :type => 'unix', :target_name => 'org.qemu.guest_agent.0', :target_type => 'virtio' lv.channel :type => 'spicevmc', :target_name => 'com.redhat.spice.0', :target_type => 'virtio' end diff --git a/Vagrantfile.template b/Vagrantfile.template index a14d96e..df53b80 100644 --- a/Vagrantfile.template +++ b/Vagrantfile.template @@ -3,6 +3,8 @@ Vagrant.configure(2) do |config| lv.machine_type = 'q35' lv.graphics_type = 'spice' lv.video_type = 'qxl' + lv.disk_bus = 'scsi' + lv.disk_device = 'sda' lv.channel :type => 'unix', :target_name => 'org.qemu.guest_agent.0', :target_type => 'virtio' lv.channel :type => 'spicevmc', :target_name => 'com.redhat.spice.0', :target_type => 'virtio' end