Sha256: b5072523c3d5fb4008aa64b6d8d7c9878be93c215955f1e8050b9f337e777576
Contents?: true
Size: 438 Bytes
Versions: 19
Compression:
Stored size: 438 Bytes
Contents
module VagrantPlugins module ProviderVirtualBox module Action class Suspend def initialize(app, env) @app = app end def call(env) if env[:machine].provider.state.id == :running env[:ui].info I18n.t("vagrant.actions.vm.suspend.suspending") env[:machine].provider.driver.suspend end @app.call(env) end end end end end
Version data entries
19 entries across 19 versions & 6 rubygems