vaguerent/lib/vagrant/actions/vm/customize.rb
2010-03-19 16:42:48 -07:00

18 lines
358 B
Ruby

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