summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2000-08-22 01:10:13 +0000
committerPascal Rigaux <pixel@mandriva.com>2000-08-22 01:10:13 +0000
commit1a996ceb744f490f0183099640e7a1eb3ad039c1 (patch)
tree7e599599dc2cd1601dc1f86b7db223ceebc562a9 /perl-install/install_steps.pm
parente2df2b17c50af038bbfe15f5b6dd9a21c532ae5b (diff)
downloaddrakx-backup-do-not-use-1a996ceb744f490f0183099640e7a1eb3ad039c1.tar
drakx-backup-do-not-use-1a996ceb744f490f0183099640e7a1eb3ad039c1.tar.gz
drakx-backup-do-not-use-1a996ceb744f490f0183099640e7a1eb3ad039c1.tar.bz2
drakx-backup-do-not-use-1a996ceb744f490f0183099640e7a1eb3ad039c1.tar.xz
drakx-backup-do-not-use-1a996ceb744f490f0183099640e7a1eb3ad039c1.zip
no_comment
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r--perl-install/install_steps.pm14
1 files changed, 0 insertions, 14 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index 06d24c232..cb2211abf 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -613,20 +613,6 @@ sub installCrypto {
$o->upNetwork;
require crypto;
my @crypto_packages = crypto::getPackages($o->{prefix}, $o->{packages}, $u->{mirror});
-
- my $oldGetFile = \&install_any::getFile;
- local *install_any::getFile = sub {
- my ($rpmfile) = @_;
- if ($rpmfile =~ /^(.*)-[^-]*-[^-]*$/ && member($1, @crypto_packages)) {
- log::l("crypto::getFile $rpmfile");
- crypto::getFile($rpmfile, $u->{mirror});
- } else {
- #- use previous getFile typically if non cryptographic packages
- #- have been selected by dependancies.
- log::l("normal getFile $rpmfile");
- &$oldGetFile($rpmfile);
- }
- };
$o->pkg_install(@{$u->{packages}});
}