Class: VagrantPlugins::ProviderLibvirt::Action::MessageWillNotDestroy

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-libvirt/action/message_will_not_destroy.rb

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ MessageWillNotDestroy

Returns a new instance of MessageWillNotDestroy.



5
6
7
# File 'lib/vagrant-libvirt/action/message_will_not_destroy.rb', line 5

def initialize(app, env)
  @app = app
end

Instance Method Details

#call(env) ⇒ Object



9
10
11
12
13
# File 'lib/vagrant-libvirt/action/message_will_not_destroy.rb', line 9

def call(env)
  env[:ui].info I18n.t("vagrant.commands.destroy.will_not_destroy",
                      name: env[:machine].name)
  @app.call(env)
end