Sha256: 61b74f784eca81f74a4121dceba6e6e9b2aabb888227720c69e42f89dc34e781
Contents?: true
Size: 391 Bytes
Versions: 19
Compression:
Stored size: 391 Bytes
Contents
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", :name => env[:machine].name) @app.call(env) end end end end end
Version data entries
19 entries across 19 versions & 6 rubygems