mirror of
https://github.com/clearlinux/rkt.git
synced 2026-09-06 22:01:54 +00:00
Merge pull request #888 from jzelinskie/vagrant
vagrantfile: fix slow VM DNS
This commit is contained in:
Vendored
+3
-2
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user