Sha256: 24476d32efadc2927b8c3c9df8fde32df5bc9ad6b3d05b4dd238e714987cfdd2
Contents?: true
Size: 532 Bytes
Versions: 54
Compression:
Stored size: 532 Bytes
Contents
# frozen_string_literal: true require 'log4r' module VagrantPlugins module ProviderZone module Action # This can be used with 'Call' built-in to check if the machine # is created and branch in the middleware. class IsCreated def initialize(app, _env) @app = app @logger = Log4r::Logger.new('vagrant_zones::action') end def call(env) env[:result] = env[:machine].state.id != :not_created @app.call(env) end end end end end
Version data entries
54 entries across 54 versions & 1 rubygems