mirror of
https://github.com/clearlinux/rkt.git
synced 2026-04-28 10:53:55 +00:00
vagrantfile: fix slow VM DNS
This commit is contained in:
5
Vagrantfile
vendored
5
Vagrantfile
vendored
@@ -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