Displaying 5 results from an estimated 5 matches for "diskdevicenam".
Did you mean:
diskdevicename
2019 Mar 25
1
Re: [PATCH 3/3] v2v: add -o json output mode
...attern : string;
> +}
> +
> +let print_output_options () =
> + printf (f_"Output options (-oo) which can be used with -o json:
> +
> + -oo json-disks-pattern=PATTERN Pattern for the disks.
> +")
> +
> +let known_pattern_variables = ["DiskNo"; "DiskDeviceName"; "GuestName"]
> +
> +let parse_output_options options =
> + let json_disks_pattern = ref None in
> +
> + List.iter (
> + function
> + | "json-disks-pattern", v ->
> + if !json_disks_pattern <> None then
> + error (...
2019 Feb 25
0
[PATCH 3/3] v2v: add -o json output mode
...tils
+
+type json_options = {
+ json_disks_pattern : string;
+}
+
+let print_output_options () =
+ printf (f_"Output options (-oo) which can be used with -o json:
+
+ -oo json-disks-pattern=PATTERN Pattern for the disks.
+")
+
+let known_pattern_variables = ["DiskNo"; "DiskDeviceName"; "GuestName"]
+
+let parse_output_options options =
+ let json_disks_pattern = ref None in
+
+ List.iter (
+ function
+ | "json-disks-pattern", v ->
+ if !json_disks_pattern <> None then
+ error (f_"-o json: -oo json-disks-pattern set m...
2019 Mar 29
0
[PATCH v2 3/3] v2v: add -o json output mode
...tils
+
+type json_options = {
+ json_disks_pattern : string;
+}
+
+let print_output_options () =
+ printf (f_"Output options (-oo) which can be used with -o json:
+
+ -oo json-disks-pattern=PATTERN Pattern for the disks.
+")
+
+let known_pattern_variables = ["DiskNo"; "DiskDeviceName"; "GuestName"]
+
+let parse_output_options options =
+ let json_disks_pattern = ref None in
+
+ List.iter (
+ function
+ | "json-disks-pattern", v ->
+ if !json_disks_pattern <> None then
+ error (f_"-o json: -oo json-disks-pattern set m...
2019 Feb 25
7
[PATCH 0/3] RFC: v2v: add -o json output mode
This series adds a new output mode for virt-v2v, called -o json.
It produces local files, just like -o local, although the metadata
produced is a JSON file with data that v2v collected in the conversion
process. This can be useful for converting to unsupported destinations,
still based on QEMU/KVM.
In addition to a simple different metadata, it offers a way to relocate
the disks, with
2019 Mar 29
5
[PATCH v2 0/3] v2v: add -o json output mode
This series adds a new output mode for virt-v2v, called -o json.
It produces local files, just like -o local, although the metadata
produced is a JSON file with data that v2v collected in the conversion
process. This can be useful for converting to unsupported destinations,
still based on QEMU/KVM.
In addition to a simple different metadata, it offers a way to relocate
the disks, with