search for: 629c8b6

Displaying 3 results from an estimated 3 matches for "629c8b6".

2016 May 22
0
[PATCH 2/2] ocaml tools: Use a common debug function.
...- if verbose () then printf "current ControlSet is %s\n%!" current_cs; + debug "current ControlSet is %s" current_cs; disable_services root current_cs; disable_autoreboot root current_cs; diff --git a/v2v/copy_to_local.ml b/v2v/copy_to_local.ml index c030fd1..629c8b6 100644 --- a/v2v/copy_to_local.ml +++ b/v2v/copy_to_local.ml @@ -122,23 +122,21 @@ read the man page virt-v2v-copy-to-local(1). error (f_"too many command line parameters. See the virt-v2v-copy-to-local(1) manual page.") in (* Print the version, easier than asking users to t...
2016 May 22
4
ocaml tools: Use a common debug function.
Add a Common_utils.debug function for printing messages only when in verbose mode. Rich.
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