From: Sébastien Han Date: Tue, 6 Jan 2015 15:23:43 +0000 (+0100) Subject: Fix vagrant deployment for vagrant version > 1.7 X-Git-Tag: v1.0.0~282^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F173%2Fhead;p=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 --- diff --git a/Vagrantfile b/Vagrantfile index a553c4479..7f82debff 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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|