diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-01-10 16:38:24 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-01-10 16:38:24 +0000 |
commit | a8864e0be1e0eb6bcd80a991314725de74876771 (patch) | |
tree | 32311fa6842f3be31bdc5f6aff0d17cfc1acf47e | |
parent | 002651e9da33b6ded7cf38fe95ca6441fa5ac74d (diff) | |
download | urpmi-a8864e0be1e0eb6bcd80a991314725de74876771.tar urpmi-a8864e0be1e0eb6bcd80a991314725de74876771.tar.gz urpmi-a8864e0be1e0eb6bcd80a991314725de74876771.tar.bz2 urpmi-a8864e0be1e0eb6bcd80a991314725de74876771.tar.xz urpmi-a8864e0be1e0eb6bcd80a991314725de74876771.zip |
restore cleaning /var/cache/urpmi/rpms
-rw-r--r-- | urpm/get_pkgs.pm | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/urpm/get_pkgs.pm b/urpm/get_pkgs.pm index b2f4ad68..c1f1de0c 100644 --- a/urpm/get_pkgs.pm +++ b/urpm/get_pkgs.pm @@ -36,6 +36,13 @@ sub selected2list { $file2fullnames{$pkg->filename}{$pkg->fullname} = undef; } + if ($options{clean_all}) { + #- clean download directory, do it here even if this is not the best moment. + $urpm->{log}(N("cleaning %s and %s", "$urpm->{cachedir}/partial", "$urpm->{cachedir}/rpms")); + urpm::sys::clean_dir("$urpm->{cachedir}/partial"); + urpm::sys::clean_dir("$urpm->{cachedir}/rpms"); + } + #- examine the local repository, which is trusted (no gpg or pgp signature check but md5 is now done). foreach my $filepath (glob("$urpm->{cachedir}/rpms/*")) { next if -d $filepath; @@ -56,12 +63,6 @@ sub selected2list { } } - if ($options{clean_all}) { - #- clean download directory, do it here even if this is not the best moment. - $urpm->{log}(N("cleaning %s", "$urpm->{cachedir}/partial")); - urpm::sys::clean_dir("$urpm->{cachedir}/partial"); - } - my ($error, @list_error, @list, %examined); foreach my $medium (@{$urpm->{media} || []}) { |