Method: OpenNebula::VirtualMachine#delete
- Defined in:
- lib/opennebula/virtual_machine.rb
#delete(recreate = false) ⇒ Object
Deletes a VM from the pool
695 696 697 698 699 700 701 |
# File 'lib/opennebula/virtual_machine.rb', line 695 def delete(recreate=false) if recreate recover(4) else recover(3) end end |