lib/vagrant/actions/vm/customize.rb in vagrant-0.2.0 vs lib/vagrant/actions/vm/customize.rb in vagrant-0.3.0

- old
+ new

@@ -4,13 +4,13 @@ class Customize < Base def execute! logger.info "Running any VM customizations..." # Run the customization procs over the VM - Vagrant.config.vm.run_procs!(@runner.vm) + @runner.env.config.vm.run_procs!(@runner.vm) # Save the vm - @runner.vm.save(true) + @runner.vm.save end end end end end