Sha256: b198408ca3dee980debfa303567fa195d49c8644caae0b2da5ea57fb720bcf19
Contents?: true
Size: 416 Bytes
Versions: 23
Compression:
Stored size: 416 Bytes
Contents
# frozen_string_literal: true 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
23 entries across 23 versions & 1 rubygems