From 7dc7f0d295b832b43bb91a4d2ef940a73f110157 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Sat, 7 May 2016 23:17:33 +0200 Subject: [PATCH] Vagrantfile: Fix network for darwin --- Vagrantfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 19c73673b..a26aa6b61 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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|