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.
- #inspect ⇒ Object private
- #lookup(name) ⇒ Object private
- #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.
1616 1617 1618 |
# File 'lib/puppet/settings.rb', line 1616 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.
1638 1639 1640 1641 1642 1643 1644 |
# File 'lib/puppet/settings.rb', line 1638 def conf unless @conf environments = Puppet.lookup(:environments) { nil } @conf = environments.get_conf(@environment_name) if environments end @conf 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.
1624 1625 1626 1627 1628 1629 1630 |
# File 'lib/puppet/settings.rb', line 1624 def include?(name) if Puppet::Settings::EnvironmentConf::VALID_SETTINGS.include?(name) && conf return true end false end |
#inspect ⇒ 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.
1646 1647 1648 |
# File 'lib/puppet/settings.rb', line 1646 def inspect %Q(<#{self.class}:#{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.
1632 1633 1634 1635 1636 |
# File 'lib/puppet/settings.rb', line 1632 def lookup(name) return nil unless Puppet::Settings::EnvironmentConf::VALID_SETTINGS.include?(name) conf.send(name) if conf end |
#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.
1620 1621 1622 |
# File 'lib/puppet/settings.rb', line 1620 def name @environment_name end |