search for: 814bf4a

Displaying 2 results from an estimated 2 matches for "814bf4a".

Did you mean: 1813bf4a
2010 Apr 06
1
[PATCH] LocalCopy: Use blockdev to get the size of block devices
...problems, this resulted in disks which would not import into RHEV. --- lib/Sys/VirtV2V/Transfer/LocalCopy.pm | 32 +++++++++++++++++++++++++++++++- 1 files changed, 31 insertions(+), 1 deletions(-) diff --git a/lib/Sys/VirtV2V/Transfer/LocalCopy.pm b/lib/Sys/VirtV2V/Transfer/LocalCopy.pm index 814bf4a..093e78f 100644 --- a/lib/Sys/VirtV2V/Transfer/LocalCopy.pm +++ b/lib/Sys/VirtV2V/Transfer/LocalCopy.pm @@ -17,6 +17,7 @@ package Sys::VirtV2V::Transfer::LocalCopy; +use POSIX; use File::Spec; use File::stat; @@ -79,7 +80,36 @@ sub transfer path => $path...
2010 Mar 31
1
[PATCH] Add LocalCopy transfer method to transfer local files to a target
..."and retry to download again.", name => $volname)); return $target->get_volume($volname); } diff --git a/lib/Sys/VirtV2V/Transfer/LocalCopy.pm b/lib/Sys/VirtV2V/Transfer/LocalCopy.pm new file mode 100644 index 0000000..814bf4a --- /dev/null +++ b/lib/Sys/VirtV2V/Transfer/LocalCopy.pm @@ -0,0 +1,121 @@ +# Sys::VirtV2V::Transfer::LocalCopy +# Copyright (C) 2010 Red Hat Inc. +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as publish...