search for: tool_loc

Displaying 3 results from an estimated 3 matches for "tool_loc".

Did you mean: foo_loc
2018 May 18
2
[PATCH] RFC: v2v: use RHV Setup Tools ISO if available
...t-v2v.pod | 18 +++++++++++++ 2 files changed, 67 insertions(+), 8 deletions(-) diff --git a/v2v/convert_windows.ml b/v2v/convert_windows.ml index 163319545..21dafe4f4 100644 --- a/v2v/convert_windows.ml +++ b/v2v/convert_windows.ml @@ -27,6 +27,10 @@ open Types module G = Guestfs +type tool_location = + | Local_path of string (* path of file *) + | ISO of string * string (* path of ISO, path to look for inside the ISO *) + (* Convert Windows guests. * * This only does a "pre-conversion", the steps needed to get the @@ -239,12 +243,15 @@ let convert (g : G.guestfs) inspect...
2018 May 23
0
Re: [PATCH] RFC: v2v: use RHV Setup Tools ISO if available
...d, 67 insertions(+), 8 deletions(-) > > diff --git a/v2v/convert_windows.ml b/v2v/convert_windows.ml > index 163319545..21dafe4f4 100644 > --- a/v2v/convert_windows.ml > +++ b/v2v/convert_windows.ml > @@ -27,6 +27,10 @@ open Types > > module G = Guestfs > > +type tool_location = > + | Local_path of string (* path of file *) > + | ISO of string * string (* path of ISO, path to look for inside the ISO *) > + > (* Convert Windows guests. > * > * This only does a "pre-conversion", the steps needed to get the > @@ -239,12 +243,15 @@...
2018 May 23
1
Re: [PATCH] RFC: v2v: use RHV Setup Tools ISO if available
...; > diff --git a/v2v/convert_windows.ml b/v2v/convert_windows.ml > > index 163319545..21dafe4f4 100644 > > --- a/v2v/convert_windows.ml > > +++ b/v2v/convert_windows.ml > > @@ -27,6 +27,10 @@ open Types > > > > module G = Guestfs > > > > +type tool_location = > > + | Local_path of string (* path of file *) > > + | ISO of string * string (* path of ISO, path to look for inside the ISO *) > > + > > (* Convert Windows guests. > > * > > * This only does a "pre-conversion", the steps needed to get t...