From bba4fbab5e8a1f05ccd85f43cd9e578fb47c9c33 Mon Sep 17 00:00:00 2001 From: BDoerrAnschuetz Date: Fri, 12 Dec 2025 15:51:04 +0100 Subject: [PATCH] Add LSILogicSas to the list of supported storage controllers for VirtualBox (#13692) --- plugins/providers/virtualbox/model/storage_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/providers/virtualbox/model/storage_controller.rb b/plugins/providers/virtualbox/model/storage_controller.rb index 92cd5b3fc..42555cbe4 100644 --- a/plugins/providers/virtualbox/model/storage_controller.rb +++ b/plugins/providers/virtualbox/model/storage_controller.rb @@ -9,7 +9,7 @@ module VagrantPlugins class StorageController IDE_CONTROLLER_TYPES = ["PIIX4", "PIIX3", "ICH6"].map(&:freeze).freeze SATA_CONTROLLER_TYPES = ["IntelAhci"].map(&:freeze).freeze - SCSI_CONTROLLER_TYPES = ["LsiLogic", "BusLogic", "VirtioSCSI"].map(&:freeze).freeze + SCSI_CONTROLLER_TYPES = ["LsiLogic", "LsiLogicSas", "BusLogic", "VirtioSCSI"].map(&:freeze).freeze IDE_DEVICES_PER_PORT = 2.freeze SATA_DEVICES_PER_PORT = 1.freeze