Sha256: bd62f65bef8ebf150afad2ce517e9b16ec7a29ad264f6c208da08f6340b63da3
Contents?: true
Size: 389 Bytes
Versions: 40
Compression:
Stored size: 389 Bytes
Contents
module Vagrant module Action module VM class Resume def initialize(app, env) @app = app end def call(env) if env[:vm].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
Version data entries
40 entries across 40 versions & 6 rubygems