Class: Puppet::Environments::Combined Private
- Includes:
- EnvironmentLoader
- Defined in:
- lib/puppet/environments.rb
Overview
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.
Combine together multiple loaders to act as one.
Instance Method Summary collapse
- #clear_all ⇒ Object private
-
#get(name) ⇒ Puppet::Node::Environment?
private
Find a named environment.
-
#get_conf(name) ⇒ Puppet::Setting::EnvironmentConf?
private
Attempt to obtain the initial configuration for the environment.
-
#initialize(*loaders) ⇒ Combined
constructor
private
A new instance of Combined.
-
#list ⇒ Array<Puppet::Node::Environment>
private
All of the environments known to the loader.
-
#search_paths ⇒ Array<String>
private
A list of indicators of where the loader is getting its environments from.
Methods included from EnvironmentLoader
Constructor Details
#initialize(*loaders) ⇒ Combined
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 Combined.
282 283 284 |
# File 'lib/puppet/environments.rb', line 282 def initialize(*loaders) @loaders = loaders end |
Instance Method Details
#clear_all ⇒ 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.
318 319 320 |
# File 'lib/puppet/environments.rb', line 318 def clear_all @loaders.each {|loader| loader.clear_all} end |
#get(name) ⇒ Puppet::Node::Environment?
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.
Find a named environment
297 298 299 300 301 302 303 304 305 |
# File 'lib/puppet/environments.rb', line 297 def get(name) @loaders.each do |loader| env = loader.get(name) if env return env end end nil end |
#get_conf(name) ⇒ Puppet::Setting::EnvironmentConf?
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.
Attempt to obtain the initial configuration for the environment. Not all loaders can provide this.
308 309 310 311 312 313 314 315 316 |
# File 'lib/puppet/environments.rb', line 308 def get_conf(name) @loaders.each do |loader| conf = loader.get_conf(name) if conf return conf end end nil end |
#list ⇒ Array<Puppet::Node::Environment>
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 All of the environments known to the loader.
292 293 294 |
# File 'lib/puppet/environments.rb', line 292 def list @loaders.collect(&:list).flatten end |
#search_paths ⇒ Array<String>
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.
A list of indicators of where the loader is getting its environments from.
287 288 289 |
# File 'lib/puppet/environments.rb', line 287 def search_paths @loaders.collect(&:search_paths).flatten end |