1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-26 06:50:09 +03:00

Feature #3671: Use sunstone vector in TemplateJSON

This commit is contained in:
Daniel Molina 2016-02-15 18:59:43 +01:00
parent add571d84a
commit 1c642ddd5e

View File

@ -99,13 +99,13 @@ module OpenNebulaJSON
def instantiate(params=Hash.new)
if params['template']
select_capacity = self['TEMPLATE/SUNSTONE_CAPACITY_SELECT']
select_capacity = self['TEMPLATE/SUNSTONE/CAPACITY_SELECT']
if (select_capacity && select_capacity.upcase == "NO")
params['template'].delete("CPU")
params['template'].delete("MEMORY")
end
select_network = self['TEMPLATE/SUNSTONE_NETWORK_SELECT']
select_network = self['TEMPLATE/SUNSTONE/NETWORK_SELECT']
if (select_network && select_network.upcase == "NO")
params['template'].delete("NIC")
end