diff options
author | Thierry Vignaud <tv@mageia.org> | 2013-05-01 20:40:56 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2013-05-01 20:40:56 +0000 |
commit | 980808144fdceceb2dac8019bd739f79e2c2bc81 (patch) | |
tree | 0d44a579489365449d16556f39da112765126fa5 /perl-install/install | |
parent | 761035a2f76ee2247490f89a1405ce8b5e417a25 (diff) | |
download | drakx-980808144fdceceb2dac8019bd739f79e2c2bc81.tar drakx-980808144fdceceb2dac8019bd739f79e2c2bc81.tar.gz drakx-980808144fdceceb2dac8019bd739f79e2c2bc81.tar.bz2 drakx-980808144fdceceb2dac8019bd739f79e2c2bc81.tar.xz drakx-980808144fdceceb2dac8019bd739f79e2c2bc81.zip |
install 'basesystem-minimal' instead of 'basesystem' prior to add extra media
thus fixing "basesystem package not selected" (mga#9611)
Diffstat (limited to 'perl-install/install')
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/install/any.pm | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 700d99e30..599d617c8 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,4 +1,6 @@ - include mount options in auto_inst.pl +- install 'basesystem-minimal' instead of 'basesystem' prior to add extra media + thus fixing "basesystem package not selected" (mga#9611) - make xdm installation automatic in auto_inst mode (mga#9875) Version 15.47 - 30 April 2013 diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm index 5402f7aa8..8cdceafff 100644 --- a/perl-install/install/any.pm +++ b/perl-install/install/any.pm @@ -149,13 +149,13 @@ 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: + # needed so that one can install basesystem-minimal before adding suppl network media: install::media::update_media($o->{packages}); require urpm::media; urpm::media::configure($o->{packages}); - #- install basesystem now - $o->do_pkgs->ensure_is_installed('basesystem', undef, 1); + #- install basesystem-minimal now + $o->do_pkgs->ensure_is_installed('basesystem-minimal', undef, 1); # in case of no network install: $o->{net} ||= {}; |