search for: create_json

Displaying 5 results from an estimated 5 matches for "create_json".

2019 Feb 25
0
[PATCH 3/3] v2v: add -o json output mode
...onverted to run on KVM anyway. The user of this mode is supposed to use all the data in the JSON, as they contain important details on how even run the guest (e.g. w.r.t. firmware, drivers of disks/NICs, etc). --- v2v/Makefile.am | 4 + v2v/cmdline.ml | 29 +++ v2v/create_json.ml | 348 ++++++++++++++++++++++++++++++++++ v2v/create_json.mli | 29 +++ v2v/output_json.ml | 116 ++++++++++++ v2v/output_json.mli | 31 +++ v2v/virt-v2v-output-local.pod | 50 +++++ v2v/virt-v2v.pod | 15 +- 8 files changed, 620 inserti...
2019 Mar 29
0
[PATCH v2 3/3] v2v: add -o json output mode
...onverted to run on KVM anyway. The user of this mode is supposed to use all the data in the JSON, as they contain important details on how even run the guest (e.g. w.r.t. firmware, drivers of disks/NICs, etc). --- v2v/Makefile.am | 4 + v2v/cmdline.ml | 29 +++ v2v/create_json.ml | 348 ++++++++++++++++++++++++++++++++++ v2v/create_json.mli | 29 +++ v2v/output_json.ml | 116 ++++++++++++ v2v/output_json.mli | 31 +++ v2v/virt-v2v-output-local.pod | 55 ++++++ v2v/virt-v2v.pod | 15 +- 8 files changed, 625 insert...
2019 Feb 25
7
[PATCH 0/3] RFC: v2v: add -o json output mode
...output mode .gitignore | 1 + common/mlpcre/PCRE.ml | 2 +- common/mlpcre/PCRE.mli | 5 +- common/mlpcre/pcre-c.c | 16 +- common/mlpcre/pcre_tests.ml | 15 +- v2v/Makefile.am | 36 +++- v2v/cmdline.ml | 29 +++ v2v/create_json.ml | 348 ++++++++++++++++++++++++++++++++++ v2v/create_json.mli | 29 +++ v2v/dummy.c | 2 + v2v/output_json.ml | 116 ++++++++++++ v2v/output_json.mli | 31 +++ v2v/var_expander.ml | 69 +++++++ v2v/var_expander.mli...
2019 Mar 29
5
[PATCH v2 0/3] v2v: add -o json output mode
...output mode .gitignore | 1 + common/mlpcre/PCRE.ml | 2 +- common/mlpcre/PCRE.mli | 5 +- common/mlpcre/pcre-c.c | 16 +- common/mlpcre/pcre_tests.ml | 11 +- v2v/Makefile.am | 36 +++- v2v/cmdline.ml | 29 +++ v2v/create_json.ml | 348 ++++++++++++++++++++++++++++++++++ v2v/create_json.mli | 29 +++ v2v/dummy.c | 2 + v2v/output_json.ml | 116 ++++++++++++ v2v/output_json.mli | 31 +++ v2v/var_expander.ml | 72 +++++++ v2v/var_expander.mli...
2019 Mar 25
1
Re: [PATCH 3/3] v2v: add -o json output mode
...nd this patch is fine. As I said in the previous email I'm somewhat unhappy with a homebrew templating system - could you check if there's anything out there that we could easily use already? If not then I guess we'd need to go with homebrew. Rich. > + !doc > diff --git a/v2v/create_json.mli b/v2v/create_json.mli > new file mode 100644 > index 000000000..6dbb6e48b > --- /dev/null > +++ b/v2v/create_json.mli > @@ -0,0 +1,29 @@ > +(* virt-v2v > + * Copyright (C) 2019 Red Hat Inc. > + * > + * This program is free software; you can redistribute it and/or modi...