21 lines
426 B
Ruby
21 lines
426 B
Ruby
module VagrantPlugins
|
|
module ProviderVirtualBox
|
|
module Action
|
|
class Resume
|
|
def initialize(app, env)
|
|
@app = app
|
|
end
|
|
|
|
def call(env)
|
|
if env[:machine].provider.state == :saved
|
|
env[:ui].info I18n.t("vagrant.actions.vm.resume.resuming")
|
|
env[:action_runner].run(Boot, env)
|
|
end
|
|
|
|
@app.call(env)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|