1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

Feature #1112: Add base path and type to onedatastore output

This commit is contained in:
Carlos Martín 2012-02-20 20:48:52 +01:00
parent a107c22734
commit 8f34895576

View File

@ -64,8 +64,10 @@ class OneDatastoreHelper < OpenNebulaHelper::OneHelper
str_h1="%-80s"
CLIHelper.print_header(str_h1 % "DATASTORE #{datastore['ID']} INFORMATION")
puts str % ["ID", datastore.id.to_s]
puts str % ["NAME", datastore.name]
puts str % ["ID", datastore.id.to_s]
puts str % ["NAME", datastore.name]
puts str % ["TYPE", datastore['TYPE']]
puts str % ["BASE PATH",datastore['BASE_PATH']]
puts
CLIHelper.print_header(str_h1 % "IMAGES", false)