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.



1427
1428
1429
# File 'lib/puppet/settings.rb', line 1427

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.



1447
1448
1449
1450
1451
# File 'lib/puppet/settings.rb', line 1447

def conf
  @conf ||= if environments = Puppet.lookup(:environments) { nil }
              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)


1435
1436
1437
1438
1439
1440
# File 'lib/puppet/settings.rb', line 1435

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.



1453
1454
1455
# File 'lib/puppet/settings.rb', line 1453

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.



1442
1443
1444
1445
# File 'lib/puppet/settings.rb', line 1442

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.



1431
1432
1433
# File 'lib/puppet/settings.rb', line 1431

def name
  @environment_name
end