diff options
author | Thierry Vignaud <tv@mandriva.org> | 2009-04-08 11:54:19 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2009-04-08 11:54:19 +0000 |
commit | be1d6cb5d77de9e7c5ad33d7c4c39befdd258f70 (patch) | |
tree | 375bc4e59697746594a113d518e2b59d5b33f3ef /perl-install/install/any.pm | |
parent | d9cff2800af0b7cde4a7e94cbc97be58fe164b3c (diff) | |
download | drakx-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?)
Diffstat (limited to 'perl-install/install/any.pm')
-rw-r--r-- | perl-install/install/any.pm | 2 |
1 files changed, 2 insertions, 0 deletions
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); |