From 5e72edfc8fbdd397498a6e66fd9b2d54424d4e09 Mon Sep 17 00:00:00 2001 From: Pierre de La Morinerie Date: Sat, 8 Feb 2020 23:32:21 +0100 Subject: [PATCH] tests: comment out bogus Vagrant settings, that prevent Internet connectivity --- Vagrantfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 611c8b3..5d0bf0c 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -40,11 +40,11 @@ Vagrant.configure("2") do |config| # Use the NAT hosts DNS resolver. Fixes slow network in the guest. # See https://serverfault.com/questions/495914/vagrant-slow-internet-connection-in-guest - config.vm.provider "virtualbox" do |v| - v.customize ["modifyvm", :id, "--natdnshostresolver1", "on"] - v.customize ["modifyvm", :id, "--natdnsproxy1", "on"] - v.customize ["modifyvm", :id, "--nictype1", "virtio"] - end + #config.vm.provider "virtualbox" do |v| + # v.customize ["modifyvm", :id, "--natdnshostresolver1", "on"] + # v.customize ["modifyvm", :id, "--natdnsproxy1", "on"] + # v.customize ["modifyvm", :id, "--nictype1", "virtio"] + #end # Share an additional folder to the guest VM. The first argument is # the path on the host to the actual folder. The second argument is