Class: VagrantPlugins::OVirtProvider::Action::DestroyVM

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-ovirt/action/destroy_vm.rb

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ DestroyVM

Returns a new instance of DestroyVM.



7
8
9
10
# File 'lib/vagrant-ovirt/action/destroy_vm.rb', line 7

def initialize(app, env)
  @logger = Log4r::Logger.new("vagrant_ovirt::action::destroy_vm")
  @app = app
end

Instance Method Details

#call(env) ⇒ Object



12
13
14
15
16
17
18
19
20
21
# File 'lib/vagrant-ovirt/action/destroy_vm.rb', line 12

def call(env)
  # Destroy the server, remove the tracking ID
  env[:ui].info(I18n.t("vagrant_ovirt.destroy_vm"))

  machine = env[:ovirt_compute].servers.get(env[:machine].id.to_s)
  machine.destroy
  env[:machine].id = nil

  @app.call(env)
end