Displaying 2 results from an estimated 2 matches for "11d13cb".
Did you mean:
11d111b
2009 May 29
1
[PATCH server] Don't set VM state to shut down in task.
...to the user. Basically we're just letting dbomatic handle
it now.
Signed-off-by: Ian Main <imain at redhat.com>
---
src/task-omatic/taskomatic.rb | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/src/task-omatic/taskomatic.rb b/src/task-omatic/taskomatic.rb
index 11d13cb..5393c29 100755
--- a/src/task-omatic/taskomatic.rb
+++ b/src/task-omatic/taskomatic.rb
@@ -286,7 +286,6 @@ class TaskOmatic
result = vm.undefine
if result.status == 0
@logger.info "Deleted VM #{db_vm.description}."
- set_vm_shut_down(db_vm)
teardown...
2009 May 29
0
[PATCH server] Add more debugging to storage tasks
...e} - XML: #{@vol_xml.to_s}")
result = @remote_pool.createVolumeXML(@vol_xml.to_s)
raise "Error creating remote pool: #{result.text}" unless result.status == 0
return result.volume
diff --git a/src/task-omatic/taskomatic.rb b/src/task-omatic/taskomatic.rb
index da933bf..11d13cb 100755
--- a/src/task-omatic/taskomatic.rb
+++ b/src/task-omatic/taskomatic.rb
@@ -207,7 +207,7 @@ class TaskOmatic
end
@logger.debug "Verifying mount of pool #{db_pool.ip_addr}:#{db_pool.type}:#{db_pool.target}:#{db_pool.export_path}"
- libvirt_pool = LibvirtPool.fac...