search for: teardown_storage_pool

Displaying 2 results from an estimated 2 matches for "teardown_storage_pool".

Did you mean: teardown_storage_pools
2009 May 29
1
[PATCH server] Don't set VM state to shut down in task.
...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_storage_pools(node) end return -- 1.6.0.6
2009 May 28
0
[PATCH server] Use qpid for migration and add more debugging to taskomatic.
...o "Error undefining old vm after migrate: #{result.text}" unless result.status == 0 + @logger.info "Couldn't undefine old vm after migrate (probably fine): #{result.text}" unless result.status == 0 # See if we can take down storage pools on the src host. teardown_storage_pools(src_node) @@ -631,7 +651,7 @@ class TaskOmatic if not existing_vol add_volume_to_db(db_pool_phys, volume); else - @logger.error "volume #{volume.name} already exists in db.." + @logger.info "Scanned volume #{volume.name} alrea...