Sha256: ec5738abac7d0749cc6e3204b2000cb182f1e74e16dd1978ed7ef6357d739880
Contents?: true
Size: 1.88 KB
Versions: 17
Compression:
Stored size: 1.88 KB
Contents
# frozen_string_literal: true require_relative '../bolt/project' require_relative '../bolt/config' require_relative '../bolt/error' module Bolt class ApplyInventory class InvalidFunctionCall < Bolt::Error def initialize(function) super("The function '#{function}' is not callable within an apply block", 'bolt.inventory/invalid-function-call') end end attr_reader :config_hash def initialize(config_hash = {}) @config_hash = config_hash @targets = {} end def create_apply_target(target) @targets[target.name] = target end def validate @groups.validate end def version 2 end def target_implementation_class Bolt::ApplyTarget end def get_targets(*_params) raise InvalidFunctionCall, 'get_targets' end def get_target(*_params) raise InvalidFunctionCall, 'get_target' end # rubocop:disable Naming/AccessorMethodName def set_var(*_params) raise InvalidFunctionCall, 'set_var' end def set_feature(*_params) raise InvalidFunctionCall, 'set_feature' end # rubocop:enable Naming/AccessorMethodName def vars(target) @targets[target.name].vars end def add_facts(*_params) raise InvalidFunctionCall, 'add_facts' end def facts(target) @targets[target.name].facts end def features(target) @targets[target.name].features end def resource(target, type, title) @targets[target.name].resource(type, title) end def add_to_group(*_params) raise InvalidFunctionCall, 'add_to_group' end def plugin_hooks(target) @targets[target.name].plugin_hooks end def set_config(_target, _key_or_key_path, _value) raise InvalidFunctionCall, 'set_config' end def target_config(target) @targets[target.name].config end end end
Version data entries
17 entries across 17 versions & 1 rubygems