From 812776bce498a8b5ee4625f7e6d93da9d0d81d3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Han?= Date: Mon, 19 Jan 2015 18:20:01 +0100 Subject: [PATCH] Change disk controller name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The recently added Trusty box was build with a Controller named "SATAController", we must reuse the same name while adding our devices. Signed-off-by: Sébastien Han --- Vagrantfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 33089212f..88200abeb 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -103,8 +103,11 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| vb.customize ['createhd', '--filename', "disk-#{i}-#{d}", '--size', '11000'] + # Controller names are dependent on the VM being built. + # It is set when the base box is made in our case ubuntu/trusty64. + # Be careful while changing the box. vb.customize ['storageattach', :id, - '--storagectl', 'SATA Controller', + '--storagectl', 'SATAController', '--port', 3 + d, '--device', 0, '--type', 'hdd',