Displaying 2 results from an estimated 2 matches for "sysprep_operation_password".
2014 Jan 21
1
[PATCH 1/2] sysprep: Update comments.
---
sysprep/sysprep_operation.mli | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/sysprep/sysprep_operation.mli b/sysprep/sysprep_operation.mli
index 61dde72..eb89db4 100644
--- a/sysprep/sysprep_operation.mli
+++ b/sysprep/sysprep_operation.mli
@@ -16,14 +16,16 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*)
-(** Structure used to describe sysprep
2013 Oct 22
4
[PATCH] sysprep: add feature of removing specified paths
...++++++++++++++++++++
3 files changed, 55 insertions(+)
create mode 100644 sysprep/sysprep_operation_remove_path.ml
diff --git a/po/POTFILES-ml b/po/POTFILES-ml
index 509e786..0e25e95 100644
--- a/po/POTFILES-ml
+++ b/po/POTFILES-ml
@@ -50,6 +50,7 @@ sysprep/sysprep_operation_pam_data.ml
sysprep/sysprep_operation_password.ml
sysprep/sysprep_operation_puppet_data_log.ml
sysprep/sysprep_operation_random_seed.ml
+sysprep/sysprep_operation_remove_path.ml
sysprep/sysprep_operation_rhn_systemid.ml
sysprep/sysprep_operation_rpm_db.ml
sysprep/sysprep_operation_samba_db_log.ml
diff --git a/sysprep/Makefile.am b/sysprep/...