1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Merge pull request #3851 from tlawrence/master

Added label to Guest Properties
This commit is contained in:
Wesley Beary 2016-02-22 11:28:31 -06:00
commit 3d38763e38

View file

@ -22,7 +22,10 @@ module Fog
section[:user_configurable] ||= true
section[:type] ||= "string"
section[:password] ||= false
xml += "<ovf:Property ovf:userConfigurable='#{section[:user_configurable]}' ovf:type='#{section[:type]}' ovf:password='#{section[:password]}' ovf:key='#{section[:id]}' ovf:value='#{section[:value]}'/>"
xml += "<ovf:Property ovf:userConfigurable='#{section[:user_configurable]}' ovf:type='#{section[:type]}' ovf:password='#{section[:password]}' ovf:key='#{section[:id]}' ovf:value='#{section[:value]}'>"
xml += "<ovf:Label>#{section[:id]}</ovf:Label>"
xml += "</ovf:Property>"
end
xml += '</ovf:ProductSection>'