1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-03 00:07:05 +00:00

Set the default interface for bridged networks to avoid interactive 'vagrant up'.

Thx to https://stackoverflow.com/questions/33250304/how-to-automatically-select-bridged-network-interfaces-in-vagrant
This commit is contained in:
downtownallday 2021-04-07 09:24:12 -04:00
parent ff6cdf14f6
commit 3be7ba7c86
2 changed files with 3 additions and 1 deletions

View File

@ -13,3 +13,5 @@ def use_preloaded_box(obj, name, preloaded_dir=".")
end
end
# Grab the name of the default interface
$default_network_interface = `ip route | awk '/^default/ {printf "%s", $5; exit 0}'`

View File

@ -3,7 +3,7 @@ load '../funcs.rb'
Vagrant.configure("2") do |config|
config.vm.synced_folder "../../..", "/mailinabox", id: "mailinabox", automount: false
config.vm.network "public_network"
config.vm.network "public_network", bridge: "#$default_network_interface"
use_preloaded_box config, "ubuntu/bionic64", ".."
# vanilla install