Sha256: 25e6f9a294f198b4ac18acf3ed87a1f40360ef8069e5be0da73b991c38ac52ad

Contents?: true

Size: 492 Bytes

Versions: 14

Compression:

Stored size: 492 Bytes

Contents

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

        def call(env)
          # Set the result to be true if the machine is created.
          env[:result] = env[:machine].state.id != :not_created

          # 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/created.rb
vagrant-lxc-0.7.0 lib/vagrant-lxc/action/created.rb
vagrant-lxc-0.6.4 lib/vagrant-lxc/action/created.rb
vagrant-lxc-0.6.3 lib/vagrant-lxc/action/created.rb
vagrant-lxc-0.6.2 lib/vagrant-lxc/action/created.rb
vagrant-lxc-0.6.1 lib/vagrant-lxc/action/created.rb
vagrant-lxc-0.6.0 lib/vagrant-lxc/action/created.rb
vagrant-lxc-0.5.0 lib/vagrant-lxc/action/created.rb
vagrant-lxc-0.4.0 lib/vagrant-lxc/action/created.rb
vagrant-lxc-0.3.4 lib/vagrant-lxc/action/created.rb
vagrant-lxc-0.3.3 lib/vagrant-lxc/action/created.rb
vagrant-lxc-0.3.2 lib/vagrant-lxc/action/created.rb
vagrant-lxc-0.3.1 lib/vagrant-lxc/action/created.rb
vagrant-lxc-0.3.0 lib/vagrant-lxc/action/created.rb