Sha256: 57247ef59aa093697ca31896973b25b54bb6010ff7a578754eb85ee3e9103f50

Contents?: true

Size: 886 Bytes

Versions: 8

Compression:

Stored size: 886 Bytes

Contents

require_relative 'configured_data_provider'

module Puppet::Pops
module Lookup
# @api private
class EnvironmentDataProvider < ConfiguredDataProvider
  def place
    'Environment'
  end

  protected

  def assert_config_version(config)
    if config.version > 3
      config
    else
      if Puppet[:strict] == :error
        config.fail(Issues::HIERA_VERSION_3_NOT_GLOBAL, :where => 'environment')
      else
        Puppet.warn_once(:hiera_v3_at_env_root, config.config_path, 'hiera.yaml version 3 found at the environment root was ignored')
      end
      nil
    end
  end

  # Return the root of the environment
  #
  # @param lookup_invocation [Invocation] The current lookup invocation
  # @return [Pathname] Path to root of the environment
  def provider_root(lookup_invocation)
    Pathname.new(lookup_invocation.scope.environment.configuration.path_to_env)
  end
end
end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
puppet-4.10.1 lib/puppet/pops/lookup/environment_data_provider.rb
puppet-4.10.1-x86-mingw32 lib/puppet/pops/lookup/environment_data_provider.rb
puppet-4.10.1-x64-mingw32 lib/puppet/pops/lookup/environment_data_provider.rb
puppet-4.10.1-universal-darwin lib/puppet/pops/lookup/environment_data_provider.rb
puppet-4.10.0 lib/puppet/pops/lookup/environment_data_provider.rb
puppet-4.10.0-x86-mingw32 lib/puppet/pops/lookup/environment_data_provider.rb
puppet-4.10.0-x64-mingw32 lib/puppet/pops/lookup/environment_data_provider.rb
puppet-4.10.0-universal-darwin lib/puppet/pops/lookup/environment_data_provider.rb