Method: CORL::Plugin::Network#each_node_config
- Defined in:
- lib/core/plugin/network.rb
#each_node_config(provider = nil) ⇒ Object
Utilities
425 426 427 428 429 430 431 432 433 |
# File 'lib/core/plugin/network.rb', line 425 def each_node_config(provider = nil) node_config.export.each do |node_provider, nodes| if provider.nil? || provider == node_provider nodes.each do |name, info| yield(node_provider, name, info) end end end end |