Displaying 1 result from an estimated 1 matches for "18415c5".
Did you mean:
14155
2012 Apr 03
1
[PATCH RFC] sysprep:add logging feature
..._spool_perform g root =
Array.iter g#rm_rf (g#glob_expand "/var/spool/cron/*");
+ eprintf "Deleted /var/spool/cron/*\n";
[]
let cron_spool_op = {
diff --git a/sysprep/sysprep_operation_dhcp_client_state.ml b/sysprep/sysprep_operation_dhcp_client_state.ml
index e3e87cb..18415c5 100644
--- a/sysprep/sysprep_operation_dhcp_client_state.ml
+++ b/sysprep/sysprep_operation_dhcp_client_state.ml
@@ -16,6 +16,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*)
+open Printf
open Sysprep_operation
module G = Guestfs
@@ -27,6 +28,7 @@ let dhcp_client_stat...