mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-04 00:17:06 +00:00
Thx to https://stackoverflow.com/questions/33250304/how-to-automatically-select-bridged-network-interfaces-in-vagrant
18 lines
692 B
Ruby
18 lines
692 B
Ruby
def use_preloaded_box(obj, name, preloaded_dir=".")
|
|
_name=name.sub! '/','-' # ubuntu/bionic64 => ubuntu-bionic64
|
|
if File.file?("#{preloaded_dir}/preloaded/preloaded-#{_name}.box")
|
|
# box name needs to be unique on the system
|
|
obj.vm.box = "preloaded-miabldap-#{_name}"
|
|
obj.vm.box_url = "file://" + Dir.pwd + "/#{preloaded_dir}/preloaded/preloaded-#{_name}.box"
|
|
if Vagrant.has_plugin?('vagrant-vbguest')
|
|
# do not update additions when booting this machine
|
|
obj.vbguest.auto_update = false
|
|
end
|
|
else
|
|
obj.vm.box = name
|
|
end
|
|
end
|
|
|
|
# Grab the name of the default interface
|
|
$default_network_interface = `ip route | awk '/^default/ {printf "%s", $5; exit 0}'`
|