summaryrefslogtreecommitdiffstats
path: root/Vagrantfile
diff options
context:
space:
mode:
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 642fe2f92..96faf1392 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -59,6 +59,12 @@ Vagrant.configure('2') do |config|
auto_correct: true
db.vm.synced_folder '.', '/vagrant', type: 'rsync', rsync__args: RSYNC_ARGS
+
+ db.vm.provider "virtualbox" do |v|
+ v.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
+ v.customize ["modifyvm", :id, "--natdnsproxy1", "on"]
+ end
+
db.vm.provider 'parallels' do |prl, override|
override.vm.box = 'parallels/centos-6.8'
end
@@ -85,6 +91,8 @@ Vagrant.configure('2') do |config|
web.vm.provider 'virtualbox' do |v|
v.memory = WEB_MEM
v.cpus = WEB_CPU
+ v.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
+ v.customize ["modifyvm", :id, "--natdnsproxy1", "on"]
end
web.vm.provider 'parallels' do |prl, override|