search for: 957bc37

Displaying 2 results from an estimated 2 matches for "957bc37".

Did you mean: 957037
2015 Dec 04
1
[PATCH] builder: create temporary images in the cachedir (RHBZ#1288201)
Temporary images can be quite big, more than the space available in $TMPDIR when it's on a tmpfs; hence, place them in our cachedir instead. --- builder/builder.ml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/builder/builder.ml b/builder/builder.ml index 957bc37..3750e5f 100644 --- a/builder/builder.ml +++ b/builder/builder.ml @@ -378,6 +378,8 @@ let main () = goal_must, goal_must_not in + let cache_dir = (open_guestfs ())#get_cachedir () in + (* Planner: Transitions. *) let transitions itags = let is t = List.mem_assoc t itags in @@ -...
2015 Nov 11
0
[PATCH] builder: Make the interface between cmdline.ml and builder.ml explicit.
...lder/Makefile.am index 6742822..993cc7b 100644 --- a/builder/Makefile.am +++ b/builder/Makefile.am @@ -53,6 +53,7 @@ CLEANFILES = \ SOURCES_MLI = \ cache.mli \ + cmdline.mli \ downloader.mli \ checksums.mli \ index.mli \ diff --git a/builder/builder.ml b/builder/builder.ml index b0fef48..957bc37 100644 --- a/builder/builder.ml +++ b/builder/builder.ml @@ -1,5 +1,5 @@ (* virt-builder - * Copyright (C) 2013 Red Hat Inc. + * Copyright (C) 2013-2015 Red Hat Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public Licens...