Sha256: d2c3fce975fc5d83b45bd5cfccabc241dd94b5b2dc8998f688ae8e9fe5f6b855
Contents?: true
Size: 1.33 KB
Versions: 68
Compression:
Stored size: 1.33 KB
Contents
# This file is loaded by the autoloader, and it does not find the hiera support unless required relative require_relative 'hiera_support' module Puppet::DataProviders # TODO: API 5.0, remove this class # @api private # @deprecated class HieraModuleDataProvider < Puppet::Plugins::DataProviders::ModuleDataProvider include HieraSupport # Return the root of the module with the name equal to _data_key_ found in the environment of the given _scope_ # # @param data_key [String] the name of the module # @param scope [Puppet::Parser::Scope] the parser scope where the environment is found # @return [Pathname] Path to root of the environment # @raise [Puppet::DataBinder::LookupError] if the given module is can not be found # def provider_root(module_name, scope) unless Puppet[:strict] == :off Puppet.warn_once(:deprecation, 'Puppet::DataProviders::HieraModuleDataProvider', 'Puppet::DataProviders::HieraModuleDataProvider is deprecated and will be removed in the next major version of Puppet') end env = scope.environment mod = env.modules.find { |m| m.name == module_name } raise Puppet::DataBinder::LookupError, "Environment '#{env.name}', cannot find module '#{module_name}'" unless mod Pathname.new(mod.path) end protected :provider_root end end
Version data entries
68 entries across 68 versions & 2 rubygems