Sha256: 483d5306575d804332770942505227feabbb9f3d19150e6d7470384cd6bd2dd8

Contents?: true

Size: 1.08 KB

Versions: 68

Compression:

Stored size: 1.08 KB

Contents

# This file is loaded by the autoloader, and it does not find the data function support unless required relative
#
require_relative 'data_function_support'
module Puppet::DataProviders; end

# The FunctionModuleDataProvider provides data from a function called 'environment::data()' that resides in a
# directory environment (seen as a module with the name environment).
# The function is called on demand, and is associated with the compiler via an Adapter. This ensures that the data
# is only produced once per compilation.
#
# TODO: API 5.0, remove this class
# @api private
# @deprecated
class Puppet::DataProviders::FunctionModuleDataProvider < Puppet::Plugins::DataProviders::ModuleDataProvider
  include Puppet::DataProviders::DataFunctionSupport

  def loader(key, scope)
    unless Puppet[:strict] == :off
      Puppet.warn_once(:deprecation, 'Puppet::DataProviders::FunctionModuleDataProvider',
      'Puppet::DataProviders::FunctionModuleDataProvider is deprecated and will be removed in the next major version of Puppet')
    end
    scope.compiler.loaders.private_loader_for_module(key)
  end
end

Version data entries

68 entries across 68 versions & 2 rubygems

Version Path
puppet-retrospec-1.8.0 vendor/pup410/lib/puppet/data_providers/function_module_data_provider.rb
puppet-retrospec-1.7.0 vendor/pup410/lib/puppet/data_providers/function_module_data_provider.rb
puppet-4.10.12 lib/puppet/data_providers/function_module_data_provider.rb
puppet-4.10.12-x86-mingw32 lib/puppet/data_providers/function_module_data_provider.rb
puppet-4.10.12-x64-mingw32 lib/puppet/data_providers/function_module_data_provider.rb
puppet-4.10.12-universal-darwin lib/puppet/data_providers/function_module_data_provider.rb
puppet-4.10.11 lib/puppet/data_providers/function_module_data_provider.rb
puppet-4.10.11-x86-mingw32 lib/puppet/data_providers/function_module_data_provider.rb
puppet-4.10.11-x64-mingw32 lib/puppet/data_providers/function_module_data_provider.rb
puppet-4.10.11-universal-darwin lib/puppet/data_providers/function_module_data_provider.rb
puppet-4.10.10 lib/puppet/data_providers/function_module_data_provider.rb
puppet-4.10.10-x86-mingw32 lib/puppet/data_providers/function_module_data_provider.rb
puppet-4.10.10-x64-mingw32 lib/puppet/data_providers/function_module_data_provider.rb
puppet-4.10.10-universal-darwin lib/puppet/data_providers/function_module_data_provider.rb
puppet-retrospec-1.6.1 vendor/pup410/lib/puppet/data_providers/function_module_data_provider.rb
puppet-retrospec-1.6.0 vendor/pup410/lib/puppet/data_providers/function_module_data_provider.rb
puppet-4.10.9 lib/puppet/data_providers/function_module_data_provider.rb
puppet-4.10.9-x86-mingw32 lib/puppet/data_providers/function_module_data_provider.rb
puppet-4.10.9-x64-mingw32 lib/puppet/data_providers/function_module_data_provider.rb
puppet-4.10.9-universal-darwin lib/puppet/data_providers/function_module_data_provider.rb