Displaying 4 results from an estimated 4 matches for "network_opt".
Did you mean:
network_op_t
2009 May 15
0
[PATCH server] use service layer for Network controller.
...work.nil? || nic.id == @nic.id
- network_conditions.push(" id != " + nic.physical_network.id.to_s)
- end
- }
- network_conditions = network_conditions.join(" AND ")
-
- @networks = PhysicalNetwork.find(:all, :conditions => network_conditions)
- network_options
-
- render :layout => false
- end
-
- def update_nic
- begin
- network_options
-
- unless params[:nic][:physical_network_id].nil? || params[:nic][:physical_network_id].to_i == 0
- @network = Network.find(params[:nic][:physical_network_id])
- if @network.boot_type...
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
...troller.rb
index 197241d..2c0079c 100644
--- a/src/app/controllers/vm_controller.rb
+++ b/src/app/controllers/vm_controller.rb
@@ -55,29 +55,31 @@ class VmController < ApplicationController
def new
alert = svc_new(params[:vm_resource_pool_id])
_setup_provisioning_options
+ _setup_network_options
@storage_tree = VmResourcePool.find(params[:vm_resource_pool_id]).get_hardware_pool.storage_tree.to_json
- @networks = Network.find(:all).collect{ |net| [net.name, net.id] }
render :layout => 'popup'
end
def create
params[:vm][:forward_vnc] = params[:forward...