search for: sysprep_operation_script

Displaying 20 results from an estimated 49 matches for "sysprep_operation_script".

2014 Jul 07
2
Re: [PATCH] Use Mkdtemp.temp_dir instead of Mkdtemp.mkdtemp
On Mon, Jul 07, 2014 at 07:53:52PM +0200, Pino Toscano wrote: > --- > builder/sigchecker.ml | 2 +- > sysprep/sysprep_operation_script.ml | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/builder/sigchecker.ml b/builder/sigchecker.ml > index c35d2da..08efa5d 100644 > --- a/builder/sigchecker.ml > +++ b/builder/sigchecker.ml > @@ -54,7 +54,7 @@ let import_keyfile ~gpg ~gpghome ~verbos...
2014 Jul 07
2
[PATCH] mllib: introduce Mkdtemp.temp_dir
Add a simple function to ease the usage of Mkdtemp.mkdtemp. --- mllib/mkdtemp.ml | 5 +++++ mllib/mkdtemp.mli | 7 +++++++ 2 files changed, 12 insertions(+) diff --git a/mllib/mkdtemp.ml b/mllib/mkdtemp.ml index 2e64862..353b04b 100644 --- a/mllib/mkdtemp.ml +++ b/mllib/mkdtemp.ml @@ -16,4 +16,9 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *) +open Common_utils +
2012 Apr 11
1
[PATCH] sysprep: align the help message
Align the "virt-sysprep --help" output message. Signed-off-by: Wanlong Gao <gaowanlong at cn.fujitsu.com> --- sysprep/sysprep_operation_hostname.ml | 2 +- sysprep/sysprep_operation_script.ml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sysprep/sysprep_operation_hostname.ml b/sysprep/sysprep_operation_hostname.ml index 51f9386..6f52e48 100644 --- a/sysprep/sysprep_operation_hostname.ml +++ b/sysprep/sysprep_operation_hostname.ml @@ -59,7 +59,7 @@ para...
2012 Apr 24
1
[PATCH] sysprep: remove the cache of package manager
...p/Makefile.am +++ b/sysprep/Makefile.am @@ -42,6 +42,7 @@ SOURCES = \ sysprep_operation_logfiles.ml \ sysprep_operation_mail_spool.ml \ sysprep_operation_net_hwaddr.ml \ + sysprep_operation_package_manager_cache.ml \ sysprep_operation_random_seed.ml \ sysprep_operation_rhn_systemid.ml \ sysprep_operation_script.ml \ @@ -69,6 +70,7 @@ OBJECTS = \ sysprep_operation_logfiles.cmx \ sysprep_operation_mail_spool.cmx \ sysprep_operation_net_hwaddr.cmx \ + sysprep_operation_package_manager_cache.ml \ sysprep_operation_random_seed.cmx \ sysprep_operation_rhn_systemid.cmx \ sysprep_operation_script.cmx...
2012 Apr 06
2
[PATCH] virt-sysprep:add logging feature
...es.ml | 11 +++++++++-- sysprep/sysprep_operation_mail_spool.ml | 9 +++++++-- sysprep/sysprep_operation_net_hwaddr.ml | 3 ++- sysprep/sysprep_operation_random_seed.ml | 3 ++- sysprep/sysprep_operation_rhn_systemid.ml | 8 ++++++-- sysprep/sysprep_operation_script.ml | 2 +- sysprep/sysprep_operation_smolt_uuid.ml | 8 ++++++-- sysprep/sysprep_operation_ssh_hostkeys.ml | 8 ++++++-- sysprep/sysprep_operation_udev_persistent_net.ml | 7 +++++-- sysprep/sysprep_operation_utmp.ml | 7 +++++-- sysprep/sy...
2014 Feb 21
2
Re: [PATCH 2/2] builder: use a disposable GPG keyring for every Sigchecker
...ould spin that off into a separate > > commit, so it could be a candidate for backporting. > > Hm but it would not be used by anything else so far, so not sure what > would the backport of it actually do. Just thinking that we might use the mkdtemp binding somewhere else. sysprep/sysprep_operation_script.ml is one candidate. > > The rest I found a bit confusing. What does it do exactly? > > The idea is to use a disposable keyring for each Sigchecker.t, so > imported keys used for checking won't be imported directly into the > user's keyring. The "exception"...
2012 Apr 13
1
[PATCH 1/2] sysprep: remove .ssh directory in users' directory
...t/.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_utmp.ml \ sysprep_operation_yum_uuid.ml \ @@ -70,6 +71,7 @@ OBJECTS = \ sysprep_operation_script.cmx \ sysprep_o...
2013 Mar 04
1
[PATCH] fuse: Add guestmount-cleanup program to handle unmounting (RHBZ#916780).
* PATCH FOR DISCUSSION ONLY - NOT TO BE APPLIED * Colin suggested something which seems eminently sensible: https://bugzilla.redhat.com/show_bug.cgi?id=916780 I've been through a couple of rounds of trying to implement this. I started with adding the option as suggested to the guestmount program, but it tended to make the guestmount program more complex. More importantly, adding the option
2012 Aug 16
5
[PATCH 0/4] Add customization capabilities to virt-sysprep
In the TODO file there's a discussion of perhaps writing a new 'virt-customize' tool. I think it's probably better (or at any rate, easier) to just add this functionality into virt-sysprep. That is what this small series of patches aims to achieve. Note these are not very well tested at the moment. The first patch adds a generic and useful '--firstboot' flag. The
2012 Apr 25
3
[PATCH 1/3] sysprep: remove the db and log of sssd
Remove the db and log of sssd. Signed-off-by: Wanlong Gao <gaowanlong at cn.fujitsu.com> --- sysprep/Makefile.am | 2 ++ sysprep/sysprep_operation_sssd_db_log.ml | 50 ++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 sysprep/sysprep_operation_sssd_db_log.ml diff --git a/sysprep/Makefile.am b/sysprep/Makefile.am index
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 Mar 05
1
[PATCH v2] fuse: Add guestunmount program to handle unmounting (RHBZ#916780)
Since the first patch: - The program is now called 'guestunmount'. - I tested the --fd option and it appears to work. - You can now control retries / quiet. - Revised man pages. - Includes tests. I'm just running through the automated tests now. Rich.
2017 Sep 19
1
Re: [PATCH 2/5] Make sure every *.ml file has a corresponding *.mli file.
...data_log.mli | 19 + > .../sysprep_operation_rh_subscription_manager.mli | 19 + > sysprep/sysprep_operation_rhn_systemid.mli | 19 + > sysprep/sysprep_operation_rpm_db.mli | 19 + > sysprep/sysprep_operation_samba_db_log.mli | 19 + > sysprep/sysprep_operation_script.mli | 19 + > sysprep/sysprep_operation_smolt_uuid.mli | 19 + > sysprep/sysprep_operation_ssh_hostkeys.mli | 19 + > sysprep/sysprep_operation_ssh_userdir.mli | 19 + > sysprep/sysprep_operation_sssd_db_log.mli | 19 + > sysprep...
2016 Jul 18
0
[PATCH v2 2/3] mllib: Use L"..." and S '...' for long and short options.
...---- mllib/getopt.mli | 43 ++++++----- resize/resize.ml | 41 +++++----- sparsify/cmdline.ml | 21 +++--- sysprep/main.ml | 29 +++---- sysprep/sysprep_operation.ml | 8 +- sysprep/sysprep_operation_script.ml | 5 +- sysprep/sysprep_operation_user_account.ml | 5 +- v2v/cmdline.ml | 55 +++++++------- v2v/copy_to_local.ml | 5 +- 15 files changed, 267 insertions(+), 245 deletions(-) diff --git a/builder/cmdline.ml b/builder/cmdline.ml inde...
2017 Feb 22
4
[PATCH 0/3] v2v: vCenter: Remove proxy environment variables
Fix for: https://bugzilla.redhat.com/show_bug.cgi?id=1354507 Main explanation is in patch #3. Rich.
2016 Jul 18
4
[PATCH v2 0/3] mllib: Various fixes and changes to Getopt module.
v1 -> v2: - Further fixes to Getopt int parsing. - Completed the L/S changes. - Fixed the test suite so it passes now. Also we don't need the special-case tests for 64 bit arch. Rich.
2016 Jul 18
3
[PATCH v4 0/2] mllib: Various fixes and changes to Getopt module.
v3 -> v4: - Pushed the first patch upstream since it was ACKed. - Prevent use of M except for the special virt-v2v options. - Sort the options after added --help etc. - Make corresponding fixes to the tests. Rich.
2016 Jul 18
4
[PATCH v3 0/3] mllib: Various fixes and changes to Getopt module.
v2 -> v3: - Add M variant and test it. Rich.
2017 Jul 21
2
[PATCH] common/mlutils: Remove bogus suffix parameter from Mkdtemp.temp_dir.
...ver called this function with the last parameter "". --- builder/builder.ml | 2 +- builder/sigchecker.ml | 2 +- common/mlutils/unix_utils.ml | 4 ++-- common/mlutils/unix_utils.mli | 4 ++-- dib/dib.ml | 2 +- sysprep/sysprep_operation_script.ml | 2 +- v2v/input_ova.ml | 2 +- v2v/output_glance.ml | 2 +- v2v/output_null.ml | 2 +- v2v/output_rhv.ml | 2 +- 10 files changed, 12 insertions(+), 12 deletions(-) diff --git a/builder/builder.ml b/builder/builder.ml index...
2016 Jul 07
12
[PATCH v3 0/8] v2v: Move Curl wrapper to mllib and more.
v2 -> v3: - Changes to the Curl API suggested by Pino.