]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
Fix vagrant deployment for vagrant version > 1.7 173/head
authorSébastien Han <sebastien.han@enovance.com>
Tue, 6 Jan 2015 15:23:43 +0000 (16:23 +0100)
committerSébastien Han <sebastien.han@enovance.com>
Tue, 6 Jan 2015 15:23:43 +0000 (16:23 +0100)
See: https://github.com/mitchellh/vagrant/issues/5048.

Closes: #172
Signed-off-by: Sébastien Han <sebastien.han@enovance.com>
Vagrantfile

index a553c4479dc6195b58b303d9cb534cdd6eb5890e..7f82debff570fa1f8743a32f526670085ae60735 100644 (file)
@@ -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|