summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2009-04-08 11:54:19 +0000
committerThierry Vignaud <tv@mandriva.org>2009-04-08 11:54:19 +0000
commitbe1d6cb5d77de9e7c5ad33d7c4c39befdd258f70 (patch)
tree375bc4e59697746594a113d518e2b59d5b33f3ef
parentd9cff2800af0b7cde4a7e94cbc97be58fe164b3c (diff)
downloaddrakx-be1d6cb5d77de9e7c5ad33d7c4c39befdd258f70.tar
drakx-be1d6cb5d77de9e7c5ad33d7c4c39befdd258f70.tar.gz
drakx-be1d6cb5d77de9e7c5ad33d7c4c39befdd258f70.tar.bz2
drakx-be1d6cb5d77de9e7c5ad33d7c4c39befdd258f70.tar.xz
drakx-be1d6cb5d77de9e7c5ad33d7c4c39befdd258f70.zip
(prep_net_suppl_media) call configure_media() so that one can install
basesystem before adding suppl network media (maybe should we display a wait message as urpm::media::configure() is costly?)
-rw-r--r--perl-install/install/NEWS3
-rw-r--r--perl-install/install/any.pm2
2 files changed, 5 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 2a4902798..4d58c8348 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,4 +1,7 @@
- include vmmouse driver (#49654)
+- media management:
+ o tell urpmi to read synthesis before adding supplementary network
+ media in order to be able to install the 'basesystem' package
Version 12.25.1 - 07 April 2009
diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm
index b683c0995..90c63fc23 100644
--- a/perl-install/install/any.pm
+++ b/perl-install/install/any.pm
@@ -146,6 +146,8 @@ sub prep_net_suppl_media {
return if our $net_suppl_media_configured && network::tools::has_network_connection();
$net_suppl_media_configured = 1;
+ # needed so that one can install basesystem before adding suppl network media:
+ install::media::configure_media($o->{packages});
#- install basesystem now
$o->do_pkgs->ensure_is_installed('basesystem', undef, 1);