2012-07-29 02:58:10 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module ProviderVirtualBox
|
|
|
|
module Action
|
|
|
|
class MessageWillNotDestroy
|
|
|
|
def initialize(app, env)
|
|
|
|
@app = app
|
|
|
|
end
|
|
|
|
|
|
|
|
def call(env)
|
|
|
|
env[:ui].info I18n.t("vagrant.commands.destroy.will_not_destroy",
|
2014-05-22 16:35:12 +00:00
|
|
|
name: env[:machine].name)
|
2012-07-29 02:58:10 +00:00
|
|
|
@app.call(env)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|