Sha256: b0dfd79717a89e9d64a70a5230eb83c0dbe1c7f19ef0138f7bb2243c0d050d01

Contents?: true

Size: 471 Bytes

Versions: 1

Compression:

Stored size: 471 Bytes

Contents

module VagrantPlugins
  module ProviderVirtualBox
    module Action
      class DiscardState
        def initialize(app, env)
          @app = app
        end

        def call(env)
          if env[:machine].state.id == :saved
            env[:ui].info I18n.t("vagrant.actions.vm.discard_state.discarding")
            env[:machine].provider.driver.discard_saved_state
          end

           @app.call(env)
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vagrant-cloudstack-1.2.0 vendor/bundle/bundler/gems/vagrant-c84e05fd063f/plugins/providers/virtualbox/action/discard_state.rb