Sha256: b0f54136d0a6c9c4ea8c72c3ef2467e14f6d8127af7aae9fbff99b584f8226bf
Contents?: true
Size: 385 Bytes
Versions: 13
Compression:
Stored size: 385 Bytes
Contents
module VagrantPlugins module ProviderLibvirt 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
13 entries across 13 versions & 1 rubygems