17 lines
333 B
Ruby
17 lines
333 B
Ruby
module VagrantPlugins
|
|
module ProviderVirtualBox
|
|
module Action
|
|
class MessageAlreadyRunning
|
|
def initialize(app, env)
|
|
@app = app
|
|
end
|
|
|
|
def call(env)
|
|
env[:ui].info I18n.t("vagrant.commands.common.vm_already_running")
|
|
@app.call(env)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|