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