# File lib/aeolus_image/command/list_command.rb, line 97 def accounts print_values = [["NAME", "PROVIDER", "PROVIDER TYPE"]] doc = Nokogiri::XML conductor['/provider_accounts/'].get doc.xpath("/provider_accounts/provider_account").each do |account| print_values << [account.xpath("name").text, account.xpath("provider").text, account.xpath("provider_type").text] end format_print(print_values) quit(0) end