diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-12-06 16:13:21 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-12-06 16:13:21 +0000 |
commit | fba45b1178d82a0ee495eb39c1bb6bd7232a49d9 (patch) | |
tree | ecba6e01e6dc518476609ebf17de5cd58985c44f /perl-install/install/any.pm | |
parent | 4e9652a0288bd8bdc07e075b7dc3528a17986b58 (diff) | |
download | drakx-fba45b1178d82a0ee495eb39c1bb6bd7232a49d9.tar drakx-fba45b1178d82a0ee495eb39c1bb6bd7232a49d9.tar.gz drakx-fba45b1178d82a0ee495eb39c1bb6bd7232a49d9.tar.bz2 drakx-fba45b1178d82a0ee495eb39c1bb6bd7232a49d9.tar.xz drakx-fba45b1178d82a0ee495eb39c1bb6bd7232a49d9.zip |
(setPackages,configure_media) extract call to urpm::media::configure()
(needed for next commits)
Diffstat (limited to 'perl-install/install/any.pm')
-rw-r--r-- | perl-install/install/any.pm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm index d349a5eb5..4871c7c29 100644 --- a/perl-install/install/any.pm +++ b/perl-install/install/any.pm @@ -341,6 +341,10 @@ sub setPackages { } } + # actually read synthesis now we have all the ones we want: + require urpm::media; + urpm::media::configure($urpm); + install::media::adjust_paths_in_urpmi_cfg($urpm); log::l('urpmi completely set up'); |