diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | urpm/bug_report.pm | 3 |
2 files changed, 5 insertions, 0 deletions
@@ -1,5 +1,7 @@ - fix proxy parameter for aria2 - remove rsync mirrors when calling aria2 +- urpmi + o enhance --bug: copy installed-through-deps.list in bug report - gurpmi, gurpmi2: o silence perl warnings (ie remove "use warnings") - library: diff --git a/urpm/bug_report.pm b/urpm/bug_report.pm index 05b34d0a..afc874aa 100644 --- a/urpm/bug_report.pm +++ b/urpm/bug_report.pm @@ -36,6 +36,9 @@ sub write_urpmdb { #- fake configuration written to convert virtual media on the fly. local $urpm->{config} = "$bug_report_dir/urpmi.cfg"; urpm::media::write_config($urpm); + + require urpm::orphans; + system('cp', urpm::orphans::unrequested_list__file($urpm), $bug_report_dir); } sub copy_requested { |