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:
commit
3d38763e38
1 changed files with 4 additions and 1 deletions
|
@ -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>'
|
||||
|
|
Loading…
Reference in a new issue