Class: VagrantPlugins::VCloud::Action::DestroyVM
- Inherits:
-
Object
- Object
- VagrantPlugins::VCloud::Action::DestroyVM
- Defined in:
- lib/vagrant-vcloud/action/destroy_vm.rb
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, env) ⇒ DestroyVM
constructor
A new instance of DestroyVM.
Constructor Details
#initialize(app, env) ⇒ DestroyVM
Returns a new instance of DestroyVM.
5 6 7 8 |
# File 'lib/vagrant-vcloud/action/destroy_vm.rb', line 5 def initialize(app, env) @app = app @logger = Log4r::Logger.new('vagrant_vcloud::action::destroy_vm') end |
Instance Method Details
#call(env) ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# File 'lib/vagrant-vcloud/action/destroy_vm.rb', line 10 def call(env) cfg = env[:machine].provider_config cnx = cfg.vcloud_cnx.driver vapp_id = env[:machine].get_vapp_id vm_id = env[:machine].id cfg.org = cnx.get_organization_by_name(cfg.org_name) cfg.vdc_id = cnx.get_vdc_id_by_name(cfg.org, cfg.vdc_name) test_vapp = cnx.get_vapp(vapp_id) @logger.debug( "Number of VMs in the vApp: #{test_vapp[:vms_hash].count}" ) env[:ui].info('Destroying VM...') vm_delete_task = cnx.delete_vm(vm_id) @logger.debug("VM Delete task id #{vm_delete_task}") cnx.wait_task_completion(vm_delete_task) env[:machine].id = nil @app.call env end |