Vagrantfile: Fix network for darwin

This commit is contained in:
Alexander Neumann 2016-05-07 23:17:33 +02:00
parent 3f8da47a0c
commit 7dc7f0d295
1 changed files with 5 additions and 5 deletions

10
Vagrantfile vendored
View File

@ -87,16 +87,16 @@ Vagrant.configure(2) do |config|
# fix permissions on synced folder
config.vm.provision "fix perms", :type => :shell, :inline => fix_perms
# fix network card
config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--nictype1", "virtio"]
end
config.vm.define "linux" do |b|
b.vm.box = "ubuntu/trusty64"
b.vm.provision "packages linux", :type => :shell, :inline => packages_linux
b.vm.provision "install gimme", :type => :shell, :inline => install_gimme
b.vm.provision "prepare user", :type => :shell, :privileged => false, :inline => prepare_user("linux")
# fix network card
config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--nictype1", "virtio"]
end
end
config.vm.define "freebsd" do |b|