View Issue Details

IDProjectCategoryView StatusLast Update
0001552ContainersGeneralpublic2024-04-10 15:22
ReporterLouis Abel Assigned ToNeil Hanlon  
PrioritynormalSeverityminorReproducibilityalways
Status assignedResolutionopen 
Summary0001552: Vagrant images are only UEFI bootable
DescriptionSome vagrant images seem to be UEFI only bootable. This bug is to track the new images that should be built to resolve it.
TagsNo tags attached.

Activities

Jude N

Jude N

2024-04-10 15:22

reporter   ~0006667

As a workaround, adding this modifyvm block to my Vagrantfile allowed me to 'vagrant up' the UEFI-only image:

<code>
Vagrant.configure("2") do |config|
  # Specify the name of the box
  config.vm.box = "rockytest"
    
  # Provider-specific configuration
  config.vm.provider "virtualbox" do |v|
    v.customize ["modifyvm", :id, "--firmware", "efi"]
  end
end
</code>

Issue History

Date Modified Username Field Change
2022-12-17 02:05 Louis Abel New Issue
2022-12-17 02:05 Louis Abel Status new => assigned
2022-12-17 02:05 Louis Abel Assigned To => Neil Hanlon
2024-04-10 15:22 Jude N Note Added: 0006667