Skip to content

Instantly share code, notes, and snippets.

@jefflab
Created November 4, 2010 01:13
Show Gist options
  • Save jefflab/661988 to your computer and use it in GitHub Desktop.
Save jefflab/661988 to your computer and use it in GitHub Desktop.
# ERROR
jeffbox:www> vagrant up
There was a problem with the configuration of Vagrant. The error message(s)
are printed below:
vm:
* Base MAC address for eth0/NAT must be set. Contact box maintainer for more information.
# Vagrantfile
Vagrant::Config.run do |config|
config.vm.box = "lucid32"
config.vm.box_url = "http://files.vagrantup.com/lucid32.box"
# config.vm.boot_mode = :gui
config.vm.network("192.168.33.11")
config.vm.customize do |vm|
vm.name = "Zoodles Red5"
end
# Share the vidsync folder as the main folder for the red5 VM
config.vm.share_folder("v-root", "/vagrant", ".", :nfs => true)
# Configure with chef solo using local cookbooks
config.vm.provisioner = :chef_solo
config.chef.run_list = ["recipe[vidsync::vagrant]"]
config.chef.json.merge!({ :vidsync => { :directory => "/vagrant" }})
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment