search for: f51fc07

Displaying 3 results from an estimated 3 matches for "f51fc07".

2012 Apr 23
2
[PATCH] sysprep: flag the system for reconfiguration
...IDs (?) - Kerberos keys - Puppet registration - - user accounts - Windows sysprep (see: https://github.com/clalancette/oz/blob/e74ce83283d468fd987583d6837b441608e5f8f0/oz/Windows.py ) - blue skies: change the background image diff --git a/sysprep/Makefile.am b/sysprep/Makefile.am index f51fc07..71669b2 100644 --- a/sysprep/Makefile.am +++ b/sysprep/Makefile.am @@ -37,6 +37,7 @@ SOURCES = \ sysprep_operation_cron_spool.ml \ sysprep_operation_dhcp_client_state.ml \ sysprep_operation_dhcp_server_state.ml \ + sysprep_operation_flag_reconfiguration.ml \ sysprep_operation_hostname.ml \...
2012 Apr 13
1
[PATCH 1/2] sysprep: remove .ssh directory in users' directory
...ves/* - /var/run/* and pam_faillock's data files - - homedirs/.ssh directory, especially /root/.ssh (Steve Grubb) - if drives are encrypted, then dm-crypt key should be changed and drives all re-encrypted - /etc/pki diff --git a/sysprep/Makefile.am b/sysprep/Makefile.am index 3a48702..f51fc07 100644 --- a/sysprep/Makefile.am +++ b/sysprep/Makefile.am @@ -46,6 +46,7 @@ SOURCES = \ sysprep_operation_script.ml \ sysprep_operation_smolt_uuid.ml \ sysprep_operation_ssh_hostkeys.ml \ + sysprep_operation_ssh_userdir.ml \ sysprep_operation_udev_persistent_net.ml \ sysprep_operation_ut...
2012 Apr 18
1
[PATCH RFC] sysprep: remove user accounts
...> --- sysprep/Makefile.am | 2 + sysprep/sysprep_operation_user_account.ml | 82 +++++++++++++++++++++++++++++ 2 files changed, 84 insertions(+) create mode 100644 sysprep/sysprep_operation_user_account.ml diff --git a/sysprep/Makefile.am b/sysprep/Makefile.am index f51fc07..9b06804 100644 --- a/sysprep/Makefile.am +++ b/sysprep/Makefile.am @@ -48,6 +48,7 @@ SOURCES = \ sysprep_operation_ssh_hostkeys.ml \ sysprep_operation_ssh_userdir.ml \ sysprep_operation_udev_persistent_net.ml \ + sysprep_operation_user_account.ml \ sysprep_operation_utmp.ml \ sysprep_ope...