search for: perform_operations

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

2012 Apr 06
2
[PATCH] virt-sysprep:add logging feature
...prep(1). add g dryrun; g#launch (); - debug_gc, operations, g, selinux_relabel + debug_gc, operations, g, selinux_relabel, show_log let () = (* Inspection. *) @@ -194,7 +197,7 @@ let () = ) mps; (* Perform the operations. *) - let flags = Sysprep_operation.perform_operations ?operations g root in + let flags = Sysprep_operation.perform_operations ?operations g root show_log in (* Parse flags. *) let relabel = ref false in diff --git a/sysprep/sysprep_operation.ml b/sysprep/sysprep_operation.ml index 3fd8afc..65013c5 100644 --- a/sysprep/syspr...
2012 Mar 31
3
[PATCH (incomplete)] Rewrite virt-sysprep in OCaml.
This patch is incomplete but it illustrates the idea. virt-sysprep is rewritten as a modular tool in OCaml. Only the 'utmp' and 'hostname' operations are implemented at the moment. Rich.