Displaying 2 results from an estimated 2 matches for "ca_certificates_op".
2012 May 09
2
[PATCH 1/2] sysprep: remove ca certificates in the guest
...(
+ fun file ->
+ List.iter (
+ fun except ->
+ if file <> except then (
+ try g#rm file with G.Error _ -> ()
+ )
+ ) excepts;
+ ) files;
+ ) paths;
+
+ []
+ )
+ else []
+
+let ca_certificates_op = {
+ name = "ca-certificates";
+ enabled_by_default = true;
+ heading = s_"Remove CA certificates in the guest";
+ pod_description = None;
+ extra_args = [];
+ perform = ca_certificates_perform;
+}
+
+let () = register_operation ca_certificates_op
--
1.7.10
2013 Aug 24
67
[PATCH 00/67] Proposed patches for libguestfs 1.22.6.
In the kernel and qemu communities it is routine for patches that will
be backported to stable branches to be posted for review. I'm
proposing we do the same for libguestfs stable branches.
All of the attached have been tested with 'make check-release'.
Rich.