From: Andrew Schoen Date: Thu, 10 Jan 2019 19:06:17 +0000 (-0600) Subject: tests: create as many drives for virtualbox as libvirt X-Git-Tag: v4.0.0beta1~22 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=3d4beaf952df5051721307d58151e6979c40cfa8;p=ceph-ansible.git tests: create as many drives for virtualbox as libvirt This just ensures that virtualbox and libvirt are making the same amount of devices for tests. Signed-off-by: Andrew Schoen --- diff --git a/Vagrantfile b/Vagrantfile index 339b577d3..0079cba5e 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -477,7 +477,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| '--add', 'scsi'] end - (0..1).each do |d| + (0..2).each do |d| vb.customize ['createhd', '--filename', "disk-#{i}-#{d}", '--size', '11000'] unless File.exist?("disk-#{i}-#{d}.vdi")