From 84271325d7f554fcc192059fcd0fd10a54a3d27d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Han?= Date: Tue, 6 Jan 2015 16:23:43 +0100 Subject: [PATCH] Fix vagrant deployment for vagrant version > 1.7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See: https://github.com/mitchellh/vagrant/issues/5048. Closes: #172 Signed-off-by: Sébastien Han --- Vagrantfile | 1 + 1 file changed, 1 insertion(+) 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|