summaryrefslogtreecommitdiffstats
path: root/sysprep/sysprep_operation_package_manager_cache.ml
Commit message (Collapse)AuthorAgeFilesLines
* sysprep: add zypper to package-manager-cache operationOlaf Hering2012-09-191-0/+2
| | | | | | | | libzypp and zypper store their cache files in /var/cache/zypp/{packages,raw,solv}/ and /var/cache/zypper/RPMS/ Add a single pattern to match both cases. Signed-off-by: Olaf Hering <olaf@aepfle.de>
* sysprep: Change perform callback to perform_on_filesystems and ↵Richard W.M. Jones2012-07-251-1/+2
| | | | | | | | | perform_on_devices. Operations that need to work directly on guest block devices will fail because the block devices are busy. Therefore add a phase with the filesystems unmounted, and allow operations to specify that they need to work in this phase.
* Add gettext support for OCaml tools (virt-resize, virt-sparsify, virt-sysprep).Richard W.M. Jones2012-05-011-1/+2
| | | | | | | | Note that this support is optional: To enable it, install the ocaml-gettext library from http://forge.ocamlcore.org/projects/ocaml-gettext . If this library is not installed, then configure detects this and inserts dummy gettext functions that do nothing.
* sysprep: remove the cache of package managerWanlong Gao2012-04-241-0/+45
Remove the cache of package manager like yum and apt. Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com> RWMJ: - Small code cleanup.