Class: Vagrant::Actions::VM::Suspend
- Defined in:
- lib/vagrant/actions/vm/suspend.rb
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
#cleanup, #follows, #initialize, #precedes, #prepare, #rescue
Methods included from Util
#error_and_exit, included, #logger, #wrap_output
Constructor Details
This class inherits a constructor from Vagrant::Actions::Base
Instance Method Details
#execute! ⇒ Object
5 6 7 8 9 10 11 12 |
# File 'lib/vagrant/actions/vm/suspend.rb', line 5 def execute! if !@runner.vm.running? raise ActionException.new(:vm_not_running_for_suspend) end logger.info "Saving VM state and suspending execution..." @runner.vm.save_state(true) end |