Sha256: 3a5f806cfcb61f58c876b7ccb7573d0eeee26c6c8e280a4d2a2e58c23082e0ca

Contents?: true

Size: 665 Bytes

Versions: 1

Compression:

Stored size: 665 Bytes

Contents

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

        def call(env)
          if env[:machine].state.id == :inaccessible
            # The VM we are attempting to manipulate is inaccessible. This
            # is a very bad situation and can only be fixed by the user. It
            # also prohibits us from actually doing anything with the virtual
            # machine, so we raise an error.
            raise Vagrant::Errors::VMInaccessible
          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/check_accessible.rb