mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
15 lines
651 B
Ruby
15 lines
651 B
Ruby
# This file was created by bootstrap-vz.
|
|
# See https://github.com/andsens/bootstrap-vz/blob/master/LICENSE for
|
|
# legal notices and disclaimers.
|
|
|
|
Vagrant::Config.run do |config|
|
|
# This Vagrantfile is auto-generated by `vagrant package` to contain
|
|
# the MAC address of the box. Custom configuration should be placed in
|
|
# the actual `Vagrantfile` in this box.
|
|
config.vm.base_mac = "[MAC_ADDRESS]"
|
|
end
|
|
|
|
# Load include vagrant file if it exists after the auto-generated
|
|
# so it can override any of the settings
|
|
include_vagrantfile = File.expand_path("../include/_Vagrantfile", __FILE__)
|
|
load include_vagrantfile if File.exist?(include_vagrantfile)
|