search for: hostcontrol

Displaying 6 results from an estimated 6 matches for "hostcontrol".

Did you mean: histcontrol
2008 Feb 12
5
Unable to boot Dom0 from external hard disk in snv_b81
Hi All, I installed snv_b81 in my portable hard disk(capacity 160gb with 2 partitions, one for solaris and other for windows). When I tried to boot into dom0 from grub, I got the following errors and the system gets hanged. Warning : No SOF interrupts have been received, this USB EHCI host controller is unusable panic[cpu0]/thread=f502ae20:cannot mount root path /pci@0, 0/pci8086, 5641@1d,
2008 Dec 10
2
Possible (bug) in winamp in_flac.dll decoder
...roller (driver 5.1.0.3441) - VIA Standard CPU to PCI Bridge (driver 5.1.0.180) - VIA Standard PCI to ISA Bridge (driver 5.1.0.180) - Volume-Manager + Tastaturen - Standardtastatur (101/102 Tasten) oder Microsoft Natural Keyboard (PS/2) + USB-Controller - Standard erweiterter PCI-zu-USB universeller Hostcontroller - USB-Massenspeicherger?t - USB-Root-Hub - USB-Root-Hub - USB-Root-Hub - USB-Root-Hub - USB-Root-Hub - VIA Rev 5 oder h?her USB universeller Hostcontroller - VIA Rev 5 oder h?her USB universeller Hostcontroller - VIA Rev 5 oder h?her USB universeller Hostcontroller - VIA Rev 5 oder h?her USB uni...
2009 Aug 18
1
[PATCH server] Add of a button destroy for disabled hosts.
...+++++++++ 3 files changed, 37 insertions(+), 0 deletions(-) diff --git a/src/app/controllers/host_controller.rb b/src/app/controllers/host_controller.rb index 20e9fca..3ecb132 100644 --- a/src/app/controllers/host_controller.rb +++ b/src/app/controllers/host_controller.rb @@ -80,6 +80,11 @@ class HostController < ApplicationController :success => true } end + + def destroy + alert = svc_destroy(params[:id]) + render :json => { :object => "host", :success => true, :alert => alert } + end def enable svc_enable(params[:id], "enabled&quot...
2009 Jun 16
1
[PATCH server] Fix errors in controller tests.
..._controller_test.rb b/src/test/functional/host_controller_test.rb index caf198d..dc9891c 100644 --- a/src/test/functional/host_controller_test.rb +++ b/src/test/functional/host_controller_test.rb @@ -23,7 +23,7 @@ require 'host_controller' # Re-raise errors caught by the controller. class HostController; def rescue_action(e) raise e end; end -class HostControllerTest < Test::Unit::TestCase +class HostControllerTest < ActionController::TestCase fixtures :hosts, :pools, :privileges, :roles, :permissions def setup diff --git a/src/test/functional/nic_controller_test.rb b/src/test/f...
2009 May 15
0
[PATCH server] final cleanup for service layer refactoring.
...id]) + render :layout => 'popup' + end + end diff --git a/src/app/controllers/host_controller.rb b/src/app/controllers/host_controller.rb index 9b683fa..0d8a879 100644 --- a/src/app/controllers/host_controller.rb +++ b/src/app/controllers/host_controller.rb @@ -56,45 +56,11 @@ class HostController < ApplicationController def snapshot_graph end - def addhost - # FIXME: This probably should go into PoolService.svc_modify, - # so that we have permission checks in only one place - - # Old pre_addhost - @pool = Pool.find(params[:hardware_pool_id]) - @parent = @pool.p...
2009 Oct 06
0
[PATCH server] new host networking wui
...++++ 4 files changed, 676 insertions(+), 66 deletions(-) diff --git a/src/app/controllers/host_controller.rb b/src/app/controllers/host_controller.rb index 20e9fca..5cb89a9 100644 --- a/src/app/controllers/host_controller.rb +++ b/src/app/controllers/host_controller.rb @@ -104,10 +104,46 @@ class HostController < ApplicationController render :layout => 'popup' end + def update_network + # adjust parameters as necessary + params[:nics] = {} if params[:nics].nil? + params[:bondings] = {} if params[:bondings].nil? + params[:nics].each { |id,n| + unless n[:ip_a...