From b3bf6013f0b666d4ad04b268553635629ff642ef Mon Sep 17 00:00:00 2001 From: Jimmy Zelinskie Date: Mon, 11 May 2015 16:13:24 -0400 Subject: [PATCH] vagrantfile: fix slow VM DNS --- Vagrantfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index c9a2eed..071d806 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -2,9 +2,10 @@ Vagrant.configure('2') do |config| # grab Ubuntu 14.04 official image config.vm.box = "ubuntu/trusty64" # Ubuntu 14.04 - # fix issues with slow dns https://www.virtualbox.org/ticket/13002 + # fix issues with slow dns http://serverfault.com/a/595010 config.vm.provider :virtualbox do |vb, override| - vb.customize ["modifyvm", :id, "--natdnsproxy1", "off"] + vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"] + vb.customize ["modifyvm", :id, "--natdnsproxy1", "on"] end # install Build Dependencies (GOLANG)