search for: guest_xml

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

Did you mean: guest_pl
2017 Nov 05
3
[PATCH 1/2] common/mlstdutils: Add with_open_in and with_open_out functions.
...le t path content = output t path (fun chan -> output_string chan content) diff --git a/v2v/copy_to_local.ml b/v2v/copy_to_local.ml index f1a67fc14..3e41016c5 100644 --- a/v2v/copy_to_local.ml +++ b/v2v/copy_to_local.ml @@ -226,9 +226,7 @@ read the man page virt-v2v-copy-to-local(1). let guest_xml = guest_name ^ ".xml" in message (f_"Writing libvirt XML metadata to %s ...") guest_xml; - let chan = open_out guest_xml in - output_string chan xml; - close_out chan; + with_open_out guest_xml (fun chan -> output_string chan xml); (* Finished, so don't delete...
2015 Nov 19
4
[PATCH 0/4] v2v: Add a new tool virt-v2v-copy-to-local to handle Xen and ESXi
It turns out that RHEL 5 Xen conversions don't work if the source disk is located on a block device. See patch 1/4 for the gory details. This patch series proposes a new tool called virt-v2v-copy-to-local which essentially is a way to make new virt-v2v work like the old virt-v2v, ie. copy first, convert after. Of course this is very slow and would only be used as a last resort, but I