fix(coreos-base/oem-vagrant): Add hook to make it easy to set base_mac

The file `base_mac.rb` will be re-written when packing this into a box.
This commit is contained in:
Michael Marineau 2014-04-28 18:47:53 -04:00
parent f16d776db2
commit 8ac5099b3a
2 changed files with 5 additions and 0 deletions

View File

@ -7,6 +7,7 @@ end
require_relative 'change_host_name.rb' require_relative 'change_host_name.rb'
require_relative 'configure_networks.rb' require_relative 'configure_networks.rb'
require_relative 'base_mac.rb'
Vagrant.configure("2") do |config| Vagrant.configure("2") do |config|
# SSH in as the default 'core' user, it has the vagrant ssh key. # SSH in as the default 'core' user, it has the vagrant ssh key.

View File

@ -0,0 +1,4 @@
# This file must be rewritten with a real value for VirtualBox
Vagrant.configure("2") do |config|
config.vm.base_mac = "080027000000"
end