An action that can be applied multiple times without changing the result beyond the initial application
vagrant ssh -c "ls /"ssh vagrant@127.0.0.1 "ls /"
/vagrant vagrant:vagrantVagrant.configure("2") do |config|config.vm.box = "ubuntu_10_04"config.vm.box_url = "http://files.vagrantup.com/lucid32.box"# more config goes hereend
config.vm.provision :shell, :inline => "echo woop woop woop"config.vm.provision :shell, :path => "setup.sh"