Displaying 3 results from an estimated 3 matches for "2cada46".
2015 Oct 21
2
[PATCH] v2v: use open_guestfs everywhere
...et tmpdir =
- let base_dir = (new Guestfs.guestfs ())#get_cachedir () in
+ let base_dir = (open_guestfs ())#get_cachedir () in
let t = Mkdtemp.temp_dir ~base_dir "glance." "" in
rmdir_on_exit t;
t in
diff --git a/v2v/output_null.ml b/v2v/output_null.ml
index 2cada46..b201baa 100644
--- a/v2v/output_null.ml
+++ b/v2v/output_null.ml
@@ -30,7 +30,7 @@ class output_null =
* temporary directory which is always deleted at exit.
*)
let tmpdir =
- let base_dir = (new Guestfs.guestfs ())#get_cachedir () in
+ let base_dir = (open_guestfs ())#get_cachedi...
2015 Oct 21
0
Re: [PATCH] v2v: use open_guestfs everywhere
...= (new Guestfs.guestfs ())#get_cachedir () in
> + let base_dir = (open_guestfs ())#get_cachedir () in
> let t = Mkdtemp.temp_dir ~base_dir "glance." "" in
> rmdir_on_exit t;
> t in
> diff --git a/v2v/output_null.ml b/v2v/output_null.ml
> index 2cada46..b201baa 100644
> --- a/v2v/output_null.ml
> +++ b/v2v/output_null.ml
> @@ -30,7 +30,7 @@ class output_null =
> * temporary directory which is always deleted at exit.
> *)
> let tmpdir =
> - let base_dir = (new Guestfs.guestfs ())#get_cachedir () in
> + let...
2015 Jul 01
12
[PATCH 1/9] v2v: Stable bus and slot numbers for removable drives (RHBZ#1238053).
This patch series adds stable bus and slot numbers for removable
drives (CDs and floppies) when the guest is converted using virt-v2v
or virt-p2v.
Previously we were a bit random about this. After this patch series,
the bus and slot numbers and preserved if at all possible.
BZ: https://bugzilla.redhat.com/show_bug.cgi?id=1238053
Rich.