Displaying 9 results from an estimated 9 matches for "492f586".
2015 Jan 20
2
[PATCH] v2v: -o vdsm should assume data domain at -os path
2015 Jan 26
2
Re: [PATCH] v2v: -o vdsm should assume data domain at -os path
....com/1176591
> Signed-off-by: Shahar Havivi <shaharh@redhat.com>
> ---
> v2v/output_vdsm.ml | 18 ++++++++++++++----
> v2v/virt-v2v.pod | 6 ++++--
> 2 files changed, 18 insertions(+), 6 deletions(-)
>
> diff --git a/v2v/output_vdsm.ml b/v2v/output_vdsm.ml
> index 492f586..c7a243e 100644
> --- a/v2v/output_vdsm.ml
> +++ b/v2v/output_vdsm.ml
> @@ -63,9 +63,8 @@ object
> * name of the target files that eventually get written by the main
> * code.
> *
> - * 'os' is the output storage (-os nfs:/export). 'source' contai...
2014 Dec 23
2
[PATCH] v2v: adding --vdsm-ovf-output option
...image_uuids;
vol_uuids = vdsm_vol_uuids;
vm_uuid = vdsm_vm_uuid;
+ ovf_output = vdsm_ovf_output;
} in
Output_vdsm.output_vdsm verbose output_storage vdsm_params
vmtype output_alloc in
diff --git a/v2v/output_vdsm.ml b/v2v/output_vdsm.ml
index 293f57f..492f586 100644
--- a/v2v/output_vdsm.ml
+++ b/v2v/output_vdsm.ml
@@ -30,6 +30,7 @@ type vdsm_params = {
image_uuids : string list;
vol_uuids : string list;
vm_uuid : string;
+ ovf_output : string;
}
class output_vdsm verbose os vdsm_params vmtype output_alloc =
@@ -37,12 +38,13 @@ object
i...
2015 Jan 20
0
Re: [PATCH] v2v: -o vdsm should assume data domain at -os path
...zilla.redhat.com/1176591
> Signed-off-by: Shahar Havivi <shaharh@redhat.com>
> ---
> v2v/output_vdsm.ml | 10 +++++-----
> v2v/virt-v2v.pod | 3 ++-
> 2 files changed, 7 insertions(+), 6 deletions(-)
>
> diff --git a/v2v/output_vdsm.ml b/v2v/output_vdsm.ml
> index 492f586..17f10a5 100644
> --- a/v2v/output_vdsm.ml
> +++ b/v2v/output_vdsm.ml
> @@ -63,9 +63,8 @@ object
> * name of the target files that eventually get written by the main
> * code.
> *
> - * 'os' is the output storage (-os nfs:/export). 'source' contai...
2015 Jan 26
0
Re: [PATCH] v2v: -o vdsm should assume data domain at -os path
...ahar Havivi <shaharh@redhat.com>
> > ---
> > v2v/output_vdsm.ml | 18 ++++++++++++++----
> > v2v/virt-v2v.pod | 6 ++++--
> > 2 files changed, 18 insertions(+), 6 deletions(-)
> >
> > diff --git a/v2v/output_vdsm.ml b/v2v/output_vdsm.ml
> > index 492f586..c7a243e 100644
> > --- a/v2v/output_vdsm.ml
> > +++ b/v2v/output_vdsm.ml
> > @@ -63,9 +63,8 @@ object
> > * name of the target files that eventually get written by the main
> > * code.
> > *
> > - * 'os' is the output storage (-os nfs...
2015 Jan 20
2
Re: [PATCH] v2v: -o vdsm should assume data domain at -os path
On 20.01.15 14:48, Richard W.M. Jones wrote:
> On Tue, Jan 20, 2015 at 04:25:20PM +0200, Shahar Havivi wrote:
> > > > + let pos = (String.length os) - 36 in
> > > > + let mp = String.sub os 0 (pos-1) in
> > > > + let uuid = String.sub os pos 36 in
> > >
> > > What is the significance of 36 here?
> > the length of uuid.
>
2014 Dec 25
0
[PATCH] v2v: adding --vdsm-ovf-output option
...image_uuids;
vol_uuids = vdsm_vol_uuids;
vm_uuid = vdsm_vm_uuid;
+ ovf_output = vdsm_ovf_output;
} in
Output_vdsm.output_vdsm verbose output_storage vdsm_params
vmtype output_alloc in
diff --git a/v2v/output_vdsm.ml b/v2v/output_vdsm.ml
index 293f57f..492f586 100644
--- a/v2v/output_vdsm.ml
+++ b/v2v/output_vdsm.ml
@@ -30,6 +30,7 @@ type vdsm_params = {
image_uuids : string list;
vol_uuids : string list;
vm_uuid : string;
+ ovf_output : string;
}
class output_vdsm verbose os vdsm_params vmtype output_alloc =
@@ -37,12 +38,13 @@ object
i...
2015 Jan 20
3
Re: [PATCH] v2v: -o vdsm should assume data domain at -os path
...d-off-by: Shahar Havivi <shaharh@redhat.com>
> > ---
> > v2v/output_vdsm.ml | 10 +++++-----
> > v2v/virt-v2v.pod | 3 ++-
> > 2 files changed, 7 insertions(+), 6 deletions(-)
> >
> > diff --git a/v2v/output_vdsm.ml b/v2v/output_vdsm.ml
> > index 492f586..17f10a5 100644
> > --- a/v2v/output_vdsm.ml
> > +++ b/v2v/output_vdsm.ml
> > @@ -63,9 +63,8 @@ object
> > * name of the target files that eventually get written by the main
> > * code.
> > *
> > - * 'os' is the output storage (-os nfs...
2014 Dec 23
2
[PATCH] v2v: adding --vdsm-ovf-output option
This option is needed by vdsm for writing the ovf to a specific directory.
The default is current directory.
Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=1176598
Signed-off-by: Shahar Havivi <shaharh@redhat.com>
---
v2v/cmdline.ml | 5 +++++
v2v/output_vdsm.ml | 16 +++++++---------
v2v/output_vdsm.mli | 1 +
v2v/test-v2v-o-vdsm-options.sh |