diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-10-02 12:09:09 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-10-02 12:09:09 +0000 |
commit | e82d3da093c9a454aa3d55d3817c79f103842a08 (patch) | |
tree | 4de3b4a9638537a699efea697c9e80ffea109058 | |
parent | 01754e05a0ad446288d639c8d94042c7385e1ee9 (diff) | |
download | urpmi-e82d3da093c9a454aa3d55d3817c79f103842a08.tar urpmi-e82d3da093c9a454aa3d55d3817c79f103842a08.tar.gz urpmi-e82d3da093c9a454aa3d55d3817c79f103842a08.tar.bz2 urpmi-e82d3da093c9a454aa3d55d3817c79f103842a08.tar.xz urpmi-e82d3da093c9a454aa3d55d3817c79f103842a08.zip |
- urpmi
o remove prefix/var/lib/rpm/__db* after installing pkgs rooted
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | urpm/install.pm | 5 |
2 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,6 @@ +- urpmi + o remove prefix/var/lib/rpm/__db* after installing pkgs rooted + Version 4.10.12 - 27 September 2007, by Pascal "Pixel" Rigaux - urpm::media::update_media: diff --git a/urpm/install.pm b/urpm/install.pm index 29bf272f..1251c8e0 100644 --- a/urpm/install.pm +++ b/urpm/install.pm @@ -254,6 +254,11 @@ sub install { } unlink @produced_deltas; + if ($urpm->{root} && !$options{test}) { + $urpm->{debug} and $urpm->{debug}("workaround bug in rpmlib by removing /var/lib/rpm/__db*"); + urpm::sys::clean_rpmdb_shared_regions($urpm->{root}); + } + @l; } |