Displaying 3 results from an estimated 3 matches for "ab70f583e".
Did you mean:
ab70f58
2019 Jan 16
0
[PATCH 2/5] mltools: create a new external_command_code
...eck_exitcode cmd stat in
+ lines, exitcode
-let rec run_commands ?(echo_cmd = true) cmds =
+and run_commands ?(echo_cmd = true) cmds =
let res = Array.make (List.length cmds) 0 in
let pids =
List.mapi (
diff --git a/common/mltools/tools_utils.mli b/common/mltools/tools_utils.mli
index ab70f583e..fb998697c 100644
--- a/common/mltools/tools_utils.mli
+++ b/common/mltools/tools_utils.mli
@@ -100,6 +100,14 @@ val create_standard_options : Getopt.speclist -> ?anon_fun:Getopt.anon_fun -> ?k
val external_command : ?echo_cmd:bool -> string -> string list
(** Run an external comman...
2019 Jan 16
2
Re: [PATCH 2/5] mltools: create a new external_command_code
...ode
>
> -let rec run_commands ?(echo_cmd = true) cmds =
> +and run_commands ?(echo_cmd = true) cmds =
> let res = Array.make (List.length cmds) 0 in
> let pids =
> List.mapi (
> diff --git a/common/mltools/tools_utils.mli b/common/mltools/tools_utils.mli
> index ab70f583e..fb998697c 100644
> --- a/common/mltools/tools_utils.mli
> +++ b/common/mltools/tools_utils.mli
> @@ -100,6 +100,14 @@ val create_standard_options : Getopt.speclist -> ?anon_fun:Getopt.anon_fun -> ?k
>
> val external_command : ?echo_cmd:bool -> string -> string list
&g...
2019 Jan 16
10
[PATCH 0/5] [RFC] builder: handle unavailable repos
In case a repository of virt-builder references files (e.g. the index)
that cannot be downloaded (network issues, 404, etc) then virt-builder
errors out on this situation. This is not a nice situation, from an user
POV.
This series does some refactoring to allow to better handle downloading
failures, and handle the failures gracefully in virt-builder.
RFC because I'm not yet too convinced