20 lines
394 B
Ruby
20 lines
394 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
module VagrantPlugins
|
|
module ProviderVirtualBox
|
|
module Action
|
|
class MessageNotCreated
|
|
def initialize(app, env)
|
|
@app = app
|
|
end
|
|
|
|
def call(env)
|
|
env[:ui].info I18n.t("vagrant.commands.common.vm_not_created")
|
|
@app.call(env)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|