Displaying 3 results from an estimated 3 matches for "default_pubkey".
2014 Feb 20
4
[PATCH 1/2] mllib: add an hook to cleanup directories on exit
Much similar to unlink_on_exit, but recursively cleaning directories.
---
mllib/common_utils.ml | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/mllib/common_utils.ml b/mllib/common_utils.ml
index 3943417..f49ede6 100644
--- a/mllib/common_utils.ml
+++ b/mllib/common_utils.ml
@@ -386,6 +386,35 @@ let unlink_on_exit =
registered_handlers := true
)
2014 Feb 21
2
Re: [PATCH 2/2] builder: use a disposable GPG keyring for every Sigchecker
...Import the default public key. *)
> +(* Import the requested public key. *)
> and import_key t =
> - if not !key_imported then (
> - let filename, chan = Filename.open_temp_file "vbpubkey" ".asc" in
> - unlink_on_exit filename;
> - output_string chan default_pubkey;
> - close_out chan;
> -
> - let cmd = sprintf "%s --import %s%s"
> - t.gpg (quote filename)
> + if not t.key_imported then (
> + let keyfile = ref "" in
> + if equal_fingerprints default_fingerprint t.fingerprint then (
> + let fil...
2014 Feb 25
12
[PATCH 0/8] virt-builder: use .conf files for configuration
Hi,
attached there is a serie of patches that completes the work on making
virt-builder use .conf files, shipped in XDG directories, to configure
all the available sources of indexes used.
This also removes the hardcoded default location, replaced now with a
configuration file (which may be not used at all).
Thanks,
Pino Toscano (8):
builder: allow "no key" as key in Sigchecker