Class: VagrantPlugins::ProviderLibvirt::Action::MessageWillNotDestroy
- Inherits:
-
Object
- Object
- VagrantPlugins::ProviderLibvirt::Action::MessageWillNotDestroy
- Defined in:
- lib/vagrant-libvirt/action/message_will_not_destroy.rb
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, env) ⇒ MessageWillNotDestroy
constructor
A new instance of MessageWillNotDestroy.
Constructor Details
#initialize(app, env) ⇒ MessageWillNotDestroy
Returns a new instance of MessageWillNotDestroy.
7 8 9 |
# File 'lib/vagrant-libvirt/action/message_will_not_destroy.rb', line 7 def initialize(app, env) @app = app end |
Instance Method Details
#call(env) ⇒ Object
11 12 13 14 15 |
# File 'lib/vagrant-libvirt/action/message_will_not_destroy.rb', line 11 def call(env) env[:ui].info I18n.t("vagrant.commands.destroy.will_not_destroy", name: env[:machine].name) @app.call(env) end |