Vagrantfile in vagrant-shell-commander-0.1.4 vs Vagrantfile in vagrant-shell-commander-0.2.0
- old
+ new
@@ -1,6 +1,11 @@
Vagrant.require_plugin "vagrant-shell-commander"
-Vagrant::Config.run do |config|
+Vagrant.configure("2") do |config|
config.vm.box = "canonical-ubuntu-12.04"
config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/precise/current/precise-server-cloudimg-amd64-vagrant-disk1.box"
+
+ config.vm.define "node1"
+ config.vm.define "node2"
+
+ config.sh.after_share_folders = "free"
end