Displaying 5 results from an estimated 5 matches for "6aba4afb5".
2018 Mar 16
1
Re: [PATCH 2/2] v2v: Add --print-target to display overlay and target information.
...++++-
> v2v/cmdline.mli | 1 +
> v2v/types.ml | 20 +++++++-------------
> v2v/v2v.ml | 17 +++++++++++++++++
> v2v/virt-v2v.pod | 5 +++++
> 5 files changed, 43 insertions(+), 14 deletions(-)
>
> diff --git a/v2v/cmdline.ml b/v2v/cmdline.ml
> index 4f651825a..6aba4afb5 100644
> --- a/v2v/cmdline.ml
> +++ b/v2v/cmdline.ml
> @@ -44,6 +44,7 @@ type cmdline = {
> output_format : string option;
> output_name : string option;
> print_source : bool;
> + print_target : bool;
> root_choice : root_choice;
> }
>
> @@ -53,6 +5...
2018 Mar 15
3
[PATCH 0/2] v2v: Add --print-target to display overlay and target information.
RHV was connecting to the VMware source in order to find out the
virtual disk size of the source disk(s), duplicating logic that
virt-v2v already provides. This makes that information available
using a new ‘virt-v2v --print-target option’.
Note in order to get all the information, this has to actually perform
the conversion step, so it takes 30 seconds or so before we reach the
point where the
2018 Mar 16
0
[PATCH v2 3/5] v2v: cmdline: Replace { foo = foo } with { foo } in record expression.
See:
https://forge.ocamlcore.org/docman/view.php/77/112/leroy-cug2010.pdf
---
v2v/cmdline.ml | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/v2v/cmdline.ml b/v2v/cmdline.ml
index 6aba4afb5..fdd0f2614 100644
--- a/v2v/cmdline.ml
+++ b/v2v/cmdline.ml
@@ -627,11 +627,9 @@ read the man page virt-v2v(1).
output_format, output_alloc in
{
- compressed = compressed; debug_overlays = debug_overlays;
- do_copy = do_copy; in_place = in_place; network_map = network_map;
- ou...
2018 Mar 16
7
[PATCH v2 0/5] Add --print-target with machine-readable version.
This adds --print-target. In addition, v2 provides a machine-readable
version (in JSON format).
All of the record -> JSON boilerplate in this patch could be
eliminated if we moved the baseline to OCaml 4.02.
Rich.
2018 Mar 15
0
[PATCH 2/2] v2v: Add --print-target to display overlay and target information.
...540
---
v2v/cmdline.ml | 14 +++++++++++++-
v2v/cmdline.mli | 1 +
v2v/types.ml | 20 +++++++-------------
v2v/v2v.ml | 17 +++++++++++++++++
v2v/virt-v2v.pod | 5 +++++
5 files changed, 43 insertions(+), 14 deletions(-)
diff --git a/v2v/cmdline.ml b/v2v/cmdline.ml
index 4f651825a..6aba4afb5 100644
--- a/v2v/cmdline.ml
+++ b/v2v/cmdline.ml
@@ -44,6 +44,7 @@ type cmdline = {
output_format : string option;
output_name : string option;
print_source : bool;
+ print_target : bool;
root_choice : root_choice;
}
@@ -53,6 +54,7 @@ let parse_cmdline () =
let do_copy = ref true...