search for: 279e93d

Displaying 3 results from an estimated 3 matches for "279e93d".

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
2010 Sep 13
3
[PATCH 1/4] Check that we're not overwriting an existing Libvirt domain
...se uri authority for hostname and username $self->{uri}->authority() =~ /^(?:([^:]*)(?::([^@]*))?@)?(.*)$/ or die(user_message(__x("Unable to parse URI authority: {auth}", diff --git a/lib/Sys/VirtV2V/Target/LibVirt.pm b/lib/Sys/VirtV2V/Target/LibVirt.pm index 574590c..279e93d 100644 --- a/lib/Sys/VirtV2V/Target/LibVirt.pm +++ b/lib/Sys/VirtV2V/Target/LibVirt.pm @@ -145,8 +145,10 @@ sub close package Sys::VirtV2V::Target::LibVirt; -use Sys::VirtV2V::Util qw(user_message); +use Sys::Virt; +use Sys::Virt::Error; +use Sys::VirtV2V::Util qw(user_message); use Locale:...
2010 Sep 21
1
[PREVIEW ONLY] Refactor data transfer code
...(3)>, +L<virt-v2v(1)>, +L<http://libguestfs.org/>. + +=cut + +1; diff --git a/lib/Sys/VirtV2V/Target/LibVirt.pm b/lib/Sys/VirtV2V/Connection/LibVirtTarget.pm similarity index 70% rename from lib/Sys/VirtV2V/Target/LibVirt.pm rename to lib/Sys/VirtV2V/Connection/LibVirtTarget.pm index 279e93d..9a3b1c5 100644 --- a/lib/Sys/VirtV2V/Target/LibVirt.pm +++ b/lib/Sys/VirtV2V/Connection/LibVirtTarget.pm @@ -1,4 +1,4 @@ -# Sys::VirtV2V::Target::LibVirt +# Sys::VirtV2V::Connection::LibVirtTarget # Copyright (C) 2010 Red Hat Inc. # # This library is free software; you can redistribute it and/o...