Class: VagrantPlugins::ProviderKvm::Action::Destroy
- Inherits:
-
Object
- Object
- VagrantPlugins::ProviderKvm::Action::Destroy
- Defined in:
- lib/vagrant-kvm/action/destroy.rb
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, env) ⇒ Destroy
constructor
A new instance of Destroy.
Constructor Details
#initialize(app, env) ⇒ Destroy
Returns a new instance of Destroy.
5 6 7 |
# File 'lib/vagrant-kvm/action/destroy.rb', line 5 def initialize(app, env) @app = app end |
Instance Method Details
#call(env) ⇒ Object
9 10 11 12 13 14 15 |
# File 'lib/vagrant-kvm/action/destroy.rb', line 9 def call(env) env[:ui].info I18n.t("vagrant.actions.vm.destroy.destroying") env[:machine].provider.driver.delete env[:machine].id = nil @app.call(env) end |