diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-04-14 16:59:28 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-04-14 16:59:28 +0000 |
commit | a21ee6953348cc3a958673c5378c7c41fd7abda6 (patch) | |
tree | f17f990454fcf29d48ad2e10af02608dae063b11 /perl-install/pkgs.pm | |
parent | 8b297e3f54f1bb1a14c205b7183b47a01aa16bae (diff) | |
download | drakx-a21ee6953348cc3a958673c5378c7c41fd7abda6.tar drakx-a21ee6953348cc3a958673c5378c7c41fd7abda6.tar.gz drakx-a21ee6953348cc3a958673c5378c7c41fd7abda6.tar.bz2 drakx-a21ee6953348cc3a958673c5378c7c41fd7abda6.tar.xz drakx-a21ee6953348cc3a958673c5378c7c41fd7abda6.zip |
When re-using the rpmsrate and compssUsers.pl from a supplementary media,
always retrieve them locally in /tmp, instead of choosing the main install
method (this wasn't working for http installs)
Diffstat (limited to 'perl-install/pkgs.pm')
-rw-r--r-- | perl-install/pkgs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm index 2dfa0cf14..47b3633e6 100644 --- a/perl-install/pkgs.pm +++ b/perl-install/pkgs.pm @@ -661,7 +661,7 @@ sub read_rpmsrate { sub readCompssUsers { my ($file) = @_; - my $f = install_any::getFile($file) + my $f = -e $file ? install_any::getLocalFile($file) : install_any::getFile($file) or do { log::l("can not find $file: $!"); return (undef, undef) }; my ($compssUsers, $gtk_display_compssUsers) = eval join('', <$f>); if ($@) { |