Class: VagrantPlugins::ProviderZone::Action::Destroy

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-zone/action/destroy.rb

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ Destroy

Returns a new instance of Destroy.



9
10
11
12
# File 'lib/vagrant-zone/action/destroy.rb', line 9

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

Instance Method Details

#call(env) ⇒ Object



14
15
16
17
18
19
20
21
# File 'lib/vagrant-zone/action/destroy.rb', line 14

def call(env)
	@machine = env[:machine]
	@driver  = @machine.provider.driver

	@driver.delete_dataset(@machine, env[:ui])
	@driver.destroy(@machine, env[:ui])
	@app.call(env)
end