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

[openstack] fix subnet update & create regarding to empty vanilla options, add allocation_pools option

This commit is contained in:
Maurice Schreiber 2015-08-05 15:09:21 +02:00
parent 388983ff85
commit ccc5555fa9
3 changed files with 10 additions and 9 deletions

View file

@ -27,7 +27,7 @@ module Fog
end
def update
requires :id, :network_id, :cidr, :ip_version
requires :id
merge_attributes(service.update_subnet(self.id,
self.attributes).body['subnet'])
self

View file

@ -14,7 +14,7 @@ module Fog
vanilla_options = [:name, :gateway_ip, :allocation_pools,
:dns_nameservers, :host_routes, :enable_dhcp,
:tenant_id]
vanilla_options.reject{ |o| options[o].nil? unless o == :gateway_ip }.each do |key|
vanilla_options.select{ |o| options.key?(o) }.each do |key|
data['subnet'][key] = options[key]
end

View file

@ -5,8 +5,8 @@ module Fog
def update_subnet(subnet_id, options = {})
data = { 'subnet' => {} }
vanilla_options = [:name, :gateway_ip, :dns_nameservers,
:host_routes, :enable_dhcp]
vanilla_options = [:name, :gateway_ip, :allocation_pools,
:dns_nameservers, :host_routes, :enable_dhcp]
vanilla_options.select{ |o| options.key?(o) }.each do |key|
data['subnet'][key] = options[key]
end
@ -24,11 +24,12 @@ module Fog
def update_subnet(subnet_id, options = {})
response = Excon::Response.new
if subnet = list_subnets.body['subnets'].find { |_| _['id'] == subnet_id }
subnet['name'] = options[:name]
subnet['gateway_ip'] = options[:gateway_ip]
subnet['dns_nameservers'] = options[:dns_nameservers]
subnet['host_routes'] = options[:host_routes]
subnet['enable_dhcp'] = options[:enable_dhcp]
subnet['name'] = options[:name]
subnet['gateway_ip'] = options[:gateway_ip]
subnet['dns_nameservers'] = options[:dns_nameservers]
subnet['host_routes'] = options[:host_routes]
subnet['allocation_pools'] = options[:allocation_pools]
subnet['enable_dhcp'] = options[:enable_dhcp]
response.body = { 'subnet' => subnet }
response.status = 200
response