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

Fix type_str method in onevnet list

This commit is contained in:
Daniel Molina 2011-06-22 16:17:10 +02:00
parent bed83ae478
commit a84f157778

View File

@ -25,6 +25,12 @@ class OneVNetHelper < OpenNebulaHelper::OneHelper
"onevnet.yaml"
end
def self.type_to_str(id)
id = id.to_i
type_str = VirtualNetwork::VNET_TYPES[id]
return VirtualNetwork::SHORT_VNET_TYPES[type_str]
end
private
def factory(id=nil)
@ -82,7 +88,7 @@ class OneVNetHelper < OpenNebulaHelper::OneHelper
end
column :TYPE, "Type of Virtual Network", :size=>6 do |d|
d.type_str
OneVNetHelper.type_to_str(d["TYPE"])
end
column :SIZE, "Size of the Virtual Network", :size=>6 do |d|