mirror of https://github.com/ceph/ceph-ansible.git
Fix vagrant deployment for vagrant version > 1.7
See: https://github.com/mitchellh/vagrant/issues/5048. Closes: #172 Signed-off-by: Sébastien Han <sebastien.han@enovance.com>pull/173/head
parent
1ac45b966b
commit
84271325d7
|
@ -39,6 +39,7 @@ end
|
|||
|
||||
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
||||
config.vm.box = 'hashicorp/precise64'
|
||||
config.ssh.insert_key = false # workaround for https://github.com/mitchellh/vagrant/issues/5048
|
||||
|
||||
(0..CLIENTS - 1).each do |i|
|
||||
config.vm.define "client#{i}" do |client|
|
||||
|
|
Loading…
Reference in New Issue