Method: Puppet_X::EnterpriseModules::WebLogic::Facts#filestores

Defined in:
lib/puppet_x/enterprisemodules/weblogic/facts.rb

#filestores(root) ⇒ Object



423
424
425
426
427
428
429
430
431
# File 'lib/puppet_x/enterprisemodules/weblogic/facts.rb', line 423

def filestores(root)
  filestores = []
  root.elements.each('file-store') do |filestore|
    store = filestore.elements['name'].text
    Puppet.debug "wls_install_homes.rb   found filestore '#{store}'"
    filestores << store
  end
  filestores
end