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

21 lines
429 B
Ruby
Raw Normal View History

module VagrantPlugins
module ProviderVirtualBox
module Action
2010-07-07 04:27:20 +00:00
class Resume
def initialize(app, env)
@app = app
end
def call(env)
if env[:machine].provider.state.id == :saved
2011-12-10 22:18:40 +00:00
env[:ui].info I18n.t("vagrant.actions.vm.resume.resuming")
env[:action_runner].run(Boot, env)
2010-07-07 04:27:20 +00:00
end
@app.call(env)
end
end
end
end
end