Sha256: b5efedebcb917da3438de6621e0443214dcbcb37852b5369fa7f10f8f1159799

Contents?: true

Size: 487 Bytes

Versions: 14

Compression:

Stored size: 487 Bytes

Contents

module Vagrant
  module LXC
    module Action
      class CheckCreated
        def initialize(app, env)
          @app = app
        end

        def call(env)
          if env[:machine].state.id == :not_created
            raise Vagrant::Errors::VMNotCreatedError
          end

          # Call the next if we have one (but we shouldn't, since this
          # middleware is built to run with the Call-type middlewares)
          @app.call(env)
        end
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
vagrant-lxc-0.8.0 lib/vagrant-lxc/action/check_created.rb
vagrant-lxc-0.7.0 lib/vagrant-lxc/action/check_created.rb
vagrant-lxc-0.6.4 lib/vagrant-lxc/action/check_created.rb
vagrant-lxc-0.6.3 lib/vagrant-lxc/action/check_created.rb
vagrant-lxc-0.6.2 lib/vagrant-lxc/action/check_created.rb
vagrant-lxc-0.6.1 lib/vagrant-lxc/action/check_created.rb
vagrant-lxc-0.6.0 lib/vagrant-lxc/action/check_created.rb
vagrant-lxc-0.5.0 lib/vagrant-lxc/action/check_created.rb
vagrant-lxc-0.4.0 lib/vagrant-lxc/action/check_created.rb
vagrant-lxc-0.3.4 lib/vagrant-lxc/action/check_created.rb
vagrant-lxc-0.3.3 lib/vagrant-lxc/action/check_created.rb
vagrant-lxc-0.3.2 lib/vagrant-lxc/action/check_created.rb
vagrant-lxc-0.3.1 lib/vagrant-lxc/action/check_created.rb
vagrant-lxc-0.3.0 lib/vagrant-lxc/action/check_created.rb