Sha256: a04c20b906f19aa7e72c8f3af0536bffba989d97012678e07bbcc299dff0371d
Contents?: true
Size: 343 Bytes
Versions: 9
Compression:
Stored size: 343 Bytes
Contents
module VagrantPlugins module OpenStack module Action class MessageWillNotDestroy def initialize(app, env) @app = app end def call(env) env[:ui].info(I18n.t("vagrant_openstack.will_not_destroy", name: env[:machine].name)) @app.call(env) end end end end end
Version data entries
9 entries across 9 versions & 2 rubygems