Class: Puppet::Settings::ValuesFromEnvironmentConf Private

Inherits:
Object
  • Object
show all
Defined in:
lib/puppet/settings.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Method Summary collapse

Constructor Details

#initialize(environment_name) ⇒ ValuesFromEnvironmentConf

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of ValuesFromEnvironmentConf.



1399
1400
1401
# File 'lib/puppet/settings.rb', line 1399

def initialize(environment_name)
  @environment_name = environment_name
end

Instance Method Details

#confObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



1419
1420
1421
1422
1423
# File 'lib/puppet/settings.rb', line 1419

def conf
  @conf ||= if environments = Puppet.lookup(:environments)
              environments.get_conf(@environment_name)
            end
end

#include?(name) ⇒ Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (Boolean)


1407
1408
1409
1410
1411
1412
# File 'lib/puppet/settings.rb', line 1407

def include?(name)
  if Puppet::Settings::EnvironmentConf::VALID_SETTINGS.include?(name) && conf
    return true
  end
  false
end

#inspectObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



1425
1426
1427
# File 'lib/puppet/settings.rb', line 1425

def inspect
  %Q{<#{self.class}:#{self.object_id} @environment_name="#{@environment_name}" @conf="#{@conf}">}
end

#lookup(name) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



1414
1415
1416
1417
# File 'lib/puppet/settings.rb', line 1414

def lookup(name)
  return nil unless Puppet::Settings::EnvironmentConf::VALID_SETTINGS.include?(name)
  conf.send(name) if conf
end

#nameObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



1403
1404
1405
# File 'lib/puppet/settings.rb', line 1403

def name
  @environment_name
end