search for: 029e4e2

Displaying 2 results from an estimated 2 matches for "029e4e2".

2010 Oct 11
1
[PATCH 1/2] Remove incompletely transferred libvirt volumes
...e incomplete data was left in place. This patch causes the volume to be removed. Fixes RHBZ#616728 --- lib/Sys/VirtV2V/Target/LibVirt.pm | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/lib/Sys/VirtV2V/Target/LibVirt.pm b/lib/Sys/VirtV2V/Target/LibVirt.pm index 029e4e2..943b95a 100644 --- a/lib/Sys/VirtV2V/Target/LibVirt.pm +++ b/lib/Sys/VirtV2V/Target/LibVirt.pm @@ -21,6 +21,7 @@ use warnings; package Sys::VirtV2V::Target::LibVirt::Vol; use POSIX; +use Sys::Virt; use Sys::VirtV2V::Util qw(user_message); @@ -143,6 +144,17 @@ sub close delete($self-&...
2010 Sep 27
2
[PATCH 0/2] Remove troublesome devices when outputting to libvirt
These 2 patches remove devices which can prevent a guest from starting after conversion if they aren't supported by the target. This solution isn't ideal. We would preferrably query the target for supported models and update if necessary, however there's no API for this yet. Matthew Booth (2): Remove converted SCSI controllers Remove sound cards when outputting to libvirt