search for: package_manager_cach

Displaying 9 results from an estimated 9 matches for "package_manager_cach".

Did you mean: package_manager_cache
2012 Aug 08
1
[PATCH] sysprep: remove the process accounting log files
...dc8 100644 --- a/po/POTFILES-ml +++ b/po/POTFILES-ml @@ -26,6 +26,7 @@ sysprep/sysprep_operation_lvm_uuids.ml sysprep/sysprep_operation_machine_id.ml sysprep/sysprep_operation_mail_spool.ml sysprep/sysprep_operation_net_hwaddr.ml +sysprep/sysprep_operation_pacct_log.ml sysprep/sysprep_operation_package_manager_cache.ml sysprep/sysprep_operation_pam_data.ml sysprep/sysprep_operation_puppet_data_log.ml diff --git a/sysprep/Makefile.am b/sysprep/Makefile.am index c52a65f..50c6e11 100644 --- a/sysprep/Makefile.am +++ b/sysprep/Makefile.am @@ -42,8 +42,8 @@ operations = \ abrt_data bash_history blkid_tab ca_ce...
2012 Sep 03
2
[PATCH] sysprep: remove hostname from ifcfg-*
...prep_operation_logfiles.ml sysprep/sysprep_operation_lvm_uuids.ml sysprep/sysprep_operation_machine_id.ml sysprep/sysprep_operation_mail_spool.ml +sysprep/sysprep_operation_net_hostname.ml sysprep/sysprep_operation_net_hwaddr.ml sysprep/sysprep_operation_pacct_log.ml sysprep/sysprep_operation_package_manager_cache.ml diff --git a/sysprep/Makefile.am b/sysprep/Makefile.am index 2ee9abf..46b8309 100644 --- a/sysprep/Makefile.am +++ b/sysprep/Makefile.am @@ -55,6 +55,7 @@ operations = \ logfiles \ machine_id \ mail_spool \ + net_hostname \ net_hwaddr \ pacct_log \ package_manager_cache \ diff --git...
2016 Dec 14
0
[PATCH v2 4/4] sysprep: Add new operation for removing /etc/passwd- and other backup files (RHBZ#1401320).
...+++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 sysprep/sysprep_operation_passwd_backups.ml diff --git a/sysprep/Makefile.am b/sysprep/Makefile.am index c9ce3b0..4722568 100644 --- a/sysprep/Makefile.am +++ b/sysprep/Makefile.am @@ -52,6 +52,7 @@ operations = \ pacct_log \ package_manager_cache \ pam_data \ + passwd_backups \ puppet_data_log \ rh_subscription_manager \ rhn_systemid \ diff --git a/sysprep/sysprep_operation_passwd_backups.ml b/sysprep/sysprep_operation_passwd_backups.ml new file mode 100644 index 0000000..d1995a4 --- /dev/null +++ b/sysprep/sysprep_operation_passwd...
2013 Sep 06
0
[PATCH 2/5] sysprep: remove the NFS settings
...e 100644 sysprep/sysprep_operation_nfs_setting.ml diff --git a/sysprep/Makefile.am b/sysprep/Makefile.am index b89345a..9894baf 100644 --- a/sysprep/Makefile.am +++ b/sysprep/Makefile.am @@ -51,6 +51,7 @@ operations = \ mail_spool \ net_hostname \ net_hwaddr \ + nfs_setting \ pacct_log \ package_manager_cache \ pam_data \ diff --git a/sysprep/sysprep_operation_nfs_setting.ml b/sysprep/sysprep_operation_nfs_setting.ml new file mode 100644 index 0000000..6d74cba --- /dev/null +++ b/sysprep/sysprep_operation_nfs_setting.ml @@ -0,0 +1,43 @@ +(* virt-sysprep + * Copyright (C) 2013 Fujitsu Limited. + * + *...
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
2013 Sep 06
7
[PATCH 1/5] sysprep: remove tmp files
This removes tmp files under /tmp and /var/tmp. Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com> --- sysprep/Makefile.am | 1 + sysprep/sysprep_operation_tmp_files.ml | 52 ++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 sysprep/sysprep_operation_tmp_files.ml diff --git a/sysprep/Makefile.am b/sysprep/Makefile.am index
2016 Dec 14
4
[PATCH 0/4] sysprep: Remove various backup files.
https://bugzilla.redhat.com/show_bug.cgi?id=1401320 This series contains two new operations. The second -- and least controversial -- is "passwd-backups" which removes files such as /etc/passwd-, /etc/shadow- and so on. The first one ("backup-files") searches the whole guest filesystem for any regular file which looks like an editor backup file, such as "*~" and
2016 Dec 14
5
[PATCH v3 0/5] sysprep: Remove various backup files.
v3: - Split out test for "unix-like" guest OSes into separate commit. - Add guestfish --format=qcow2 to the test (x2). Rich.
2016 Dec 14
6
[PATCH v2 0/4] sysprep: Remove various backup files.
In v2: - The backup-files operation now operates on a conservative whitelist of filesystems, so it won't touch anything in /usr. Consequently it also runs much more quickly, about 4 seconds on the barebones virt-builder fedora-25 image. - Call Gc.compact () in visit_tests. - Added documentation to fnmatch.mli.