diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-08-18 14:09:49 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-08-18 14:09:49 +0000 |
commit | cd2b3c05de8f31185f8858fee910cc68a2e3d413 (patch) | |
tree | 82053f93e7b1ff42483321152fa94b14487fa09a /perl-install/install_any.pm | |
parent | b1f3e31be392df619d794daa714f61a858d3e35c (diff) | |
download | drakx-cd2b3c05de8f31185f8858fee910cc68a2e3d413.tar drakx-cd2b3c05de8f31185f8858fee910cc68a2e3d413.tar.gz drakx-cd2b3c05de8f31185f8858fee910cc68a2e3d413.tar.bz2 drakx-cd2b3c05de8f31185f8858fee910cc68a2e3d413.tar.xz drakx-cd2b3c05de8f31185f8858fee910cc68a2e3d413.zip |
log more precisely the "naughty servers" unselected
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r-- | perl-install/install_any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index ffabd64c3..49fa5c394 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -903,7 +903,7 @@ to upgrade as soon as possible. Do you really want to install these servers? ", join(", ", @naughtyServers))), [ N_("Yes"), N_("No") ], 'Yes') or return; if ($r ne 'Yes') { - log::l("unselecting naughty servers"); + log::l("unselecting naughty servers: " . join(' ', @naughtyServers)); pkgs::unselectPackage($o->{packages}, pkgs::packageByName($o->{packages}, $_)) foreach @naughtyServers; } 1; |