mirror of https://github.com/ceph/ceph-ansible.git
Merge pull request #173 from leseb/fix-vagrant-1.8-deployment
Fix vagrant deployment for vagrant version > 1.7pull/174/head
commit
e72c8c5ac0
|
@ -39,6 +39,7 @@ end
|
||||||
|
|
||||||
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
||||||
config.vm.box = 'hashicorp/precise64'
|
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|
|
(0..CLIENTS - 1).each do |i|
|
||||||
config.vm.define "client#{i}" do |client|
|
config.vm.define "client#{i}" do |client|
|
||||||
|
|
Loading…
Reference in New Issue