Class: Puppet::Settings::ValuesFromEnvironmentConf Private
- 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
- #conf ⇒ Object private
- #include?(name) ⇒ Boolean private
-
#initialize(environment_name) ⇒ ValuesFromEnvironmentConf
constructor
private
A new instance of ValuesFromEnvironmentConf.
- #lookup(name) ⇒ Object private
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.
1420 1421 1422 |
# File 'lib/puppet/settings.rb', line 1420 def initialize(environment_name) @environment_name = environment_name end |
Instance Method Details
#conf ⇒ 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.
1436 1437 1438 1439 1440 |
# File 'lib/puppet/settings.rb', line 1436 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.
1424 1425 1426 1427 1428 1429 |
# File 'lib/puppet/settings.rb', line 1424 def include?(name) if Puppet::Settings::EnvironmentConf::VALID_SETTINGS.include?(name) && conf return true end false 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.
1431 1432 1433 1434 |
# File 'lib/puppet/settings.rb', line 1431 def lookup(name) return nil unless Puppet::Settings::EnvironmentConf::VALID_SETTINGS.include?(name) conf.send(name) if conf end |