vagrant/plugins/providers/virtualbox/action/message_not_running.rb

17 lines
325 B
Ruby
Raw Normal View History

2012-08-15 04:21:31 +00:00
module VagrantPlugins
module ProviderVirtualBox
module Action
class MessageNotRunning
def initialize(app, env)
@app = app
end
def call(env)
env[:ui].info I18n.t("vagrant.commands.common.vm_not_running")
@app.call(env)
end
end
end
end
end