diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | urpm/media.pm | 6 |
2 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,6 @@ +- library: + o associate media_cfg data to media when adding them + Version 7.13 - 4 December 2012, by Thierry Vignaud - library speedups when looking up packages: diff --git a/urpm/media.pm b/urpm/media.pm index 92f4a777..97228f76 100644 --- a/urpm/media.pm +++ b/urpm/media.pm @@ -1055,6 +1055,12 @@ sub add_distrib_media { ); ++$medium_index; } + + # associate newly added medias with their description in a media.cfg file + # @media content will be modified and then add_existing medium will take + # care of copying the media to $urpm + _associate_media_with_mediacfg($urpm, [ map { name2medium($urpm, $_) } @newnames ]); + return @newnames; } |