Vagrantfile in vagrant-environments-0.1.5 vs Vagrantfile in vagrant-environments-0.1.6
- old
+ new
@@ -1,7 +1,7 @@
Vagrant.configure("2") do |config|
config.environments.default_environment = "local"
- config.environment.define config do |machine, options, env_settings|
+ config.environment.define config do |machine, name, options, env_settings|
machine.vm.network :private_network, ip: options["ip"]
machine.vm.provider :virtualbox do |vb, override|
vb.customize ["modifyvm", :id, "--memory", "2048"]
vb.customize ["modifyvm", :id, "--cpus", options["cpu"]]