mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Added extra parameters for domain suffixes and gateway, added comments
This commit is contained in:
parent
a1130dff1f
commit
173a490baf
1 changed files with 13 additions and 4 deletions
|
@ -6,14 +6,22 @@ module Fog
|
|||
raise ArgumentError, "user_data can't be nil" if user_data.nil?
|
||||
custom_spec = { 'customization_spec' => Hash.new }
|
||||
user_data = YAML.load(user_data)
|
||||
# hostname expects a string, REQUIRED
|
||||
# netmask expects a string
|
||||
# dns expects an array
|
||||
# gateway expects an array
|
||||
# domain expects a string, REQUIRED
|
||||
# domainsuffixlist expects an array, REQUIRED
|
||||
# timezone expects a string, for example Europe/Copenhagen, REQUIRED
|
||||
custom_spec['hostname'] = user_data['hostname'] if user_data.key?('hostname')
|
||||
custom_spec['ipsettings'] = { 'ip' => user_data['ip'] } if user_data.key?('ip')
|
||||
custom_spec['ipsettings']['subnetMask'] = user_data['netmask'] if user_data.key?('netmask')
|
||||
custom_spec['ipsettings']['dnsServerList'] = user_data['dns'] if user_data.key?('dns')
|
||||
custom_spec['ipsettings']['gateway'] = user_data['gateway'] if user_data.key?('gateway')
|
||||
custom_spec['domain'] = user_data['domain'] if user_data.key?('domain')
|
||||
custom_spec['dnsSuffixList'] = user_data['domain'] if user_data.key?('domain')
|
||||
custom_spec['dnsSuffixList'] = user_data['domainsuffixlist'] if user_data.key?('domainsuffixlist')
|
||||
custom_spec['time_zone'] = user_data['timezone'] if user_data.key?('timezone')
|
||||
custom_spec
|
||||
custom_spec
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -26,10 +34,11 @@ module Fog
|
|||
custom_spec['ipsettings'] = { 'ip' => user_data['ip'] } if user_data.key?('ip')
|
||||
custom_spec['ipsettings']['subnetMask'] = user_data['netmask'] if user_data.key?('netmask')
|
||||
custom_spec['ipsettings']['dnsServerList'] = user_data['dns'] if user_data.key?('dns')
|
||||
custom_spec['ipsettings']['gateway'] = user_data['gateway'] if user_data.key?('gateway')
|
||||
custom_spec['domain'] = user_data['domain'] if user_data.key?('domain')
|
||||
custom_spec['dnsSuffixList'] = user_data['domain'] if user_data.key?('domain')
|
||||
custom_spec['dnsSuffixList'] = user_data['domainsuffixlist'] if user_data.key?('domainsuffixlist')
|
||||
custom_spec['time_zone'] = user_data['timezone'] if user_data.key?('timezone')
|
||||
custom_spec
|
||||
custom_spec
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue