From: Sébastien Han Date: Mon, 19 Jan 2015 17:20:01 +0000 (+0100) Subject: Change disk controller name X-Git-Tag: v1.0.0~267^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F189%2Fhead;p=ceph-ansible.git Change disk controller name 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 --- 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',