search for: dd52af5

Displaying 2 results from an estimated 2 matches for "dd52af5".

2016 May 23
0
[PATCH 5/5] mllib: add a new run_command helper
...mg"; "rebase"; "-u"; "-b"; backing_qemu_uri; + overlay.ov_overlay_file |] in + if run_command cmd <> 0 then warning (f_"qemu-img rebase failed (ignored)") end diff --git a/v2v/input_ova.ml b/v2v/input_ova.ml index dd52af5..b914960 100644 --- a/v2v/input_ova.ml +++ b/v2v/input_ova.ml @@ -60,8 +60,8 @@ object tmpfile in let untar ?(format = "") file outdir = - let cmd = sprintf "tar -x%sf %s -C %s" format (quote file) (quote outdir) in - if shell_command cmd...
2016 May 23
7
[PATCH 1/5] mllib: make external_command echo the command executed
Add an optional parameter to disable this behaviour, so the Curl module in v2v won't print user-sensible data (like passwords). --- builder/checksums.ml | 1 - builder/downloader.ml | 1 - builder/sigchecker.ml | 1 - mllib/common_utils.ml | 4 +++- mllib/common_utils.mli | 7 +++++-- v2v/curl.ml | 2 +- 6 files changed, 9 insertions(+), 7 deletions(-) diff --git