Browse Source

Vagrant Fix for Windows (#3826)

Matheus Rocha Vieira 6 years ago
parent
commit
10c7696a34
1 changed files with 6 additions and 0 deletions
  1. 6 0
      deployment/vagrant/Vagrantfile

+ 6 - 0
deployment/vagrant/Vagrantfile

@@ -19,4 +19,10 @@ Vagrant.configure("2") do |config|
   provider_virtualbox(config)
   provider_libvirt(config)
 
+  config.ssh.insert_key = false
+
+  config.vm.provider "virtualbox" do |vb|
+    vb.customize [ "modifyvm", :id, "--uartmode1", "disconnected" ]
+  end
+  
 end