Class: Vagrant::LXC::Action::CheckCreated

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-lxc/action/check_created.rb

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ CheckCreated

Returns a new instance of CheckCreated.



5
6
7
# File 'lib/vagrant-lxc/action/check_created.rb', line 5

def initialize(app, env)
  @app = app
end

Instance Method Details

#call(env) ⇒ Object



9
10
11
12
13
14
15
16
17
# File 'lib/vagrant-lxc/action/check_created.rb', line 9

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