search for: ip_hash

Displaying 4 results from an estimated 4 matches for "ip_hash".

Did you mean: id_hash
2009 May 15
0
[PATCH server] use service layer for Network controller.
...else + @ip_addresses = [] + end + end + + # create new IP address + # + # === Instance variables + # [<tt>@ip_address</tt>] create new IP address + # === Required permissions + # [<tt>Privilege::MODIFY</tt>] on the default HW pool + def svc_create_ip_address(ip_hash) + authorize + @ip_address = IpAddress.factory(ip_hash) + @ip_address.save! + return "Ip Address was successfully created." + end + + # Load IP address +id+ for editing + # + # === Instance variables + # [<tt>@ip_address</tt>] IP Address with +id+ + # [<tt...
2009 Jul 24
1
permit many-to-many vms / networks relationship redux
redux patchset permitting a vm to be associated with multiple networks and vice-versa. updated patchset so as to be applicable against current oVirt server HEAD these patches may be applied in any order, they all need to be pushed together
2009 Jul 09
2
permit many-to-many vms / networks relationship
This patchset contains changes to the ovirt server frontend, backend, and tests components, permitting vms to be associated with multiple networks and vice versa. Also included are two patches which are required for the frontend bits; a patch adding collapsable sections to the vm form, which in itself depends on the second patch that provides default values for the cpu and memory vm table fields
2009 Jun 30
0
[PATCH server] permit many-to-many vms / networks relationship
...|nic| + unless nic.network.nil? || nic.id == @nic.id + network_conditions.push(" id != " + nic.network.id.to_s) end } network_conditions = network_conditions.join(" AND ") @@ -228,8 +228,8 @@ module NetworkService def svc_update_nic(id, nic_hash, ip_hash) authorize network_options - unless nic_hash[:physical_network_id].to_i == 0 - @network = Network.find(nic_hash[:physical_network_id]) + unless nic_hash[:network_id].to_i == 0 + @network = Network.find(nic_hash[:network_id]) if @network.boot_type.id == @static_boot_...