diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-02-14 18:27:08 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-02-14 18:27:08 +0000 |
commit | 2af8e1cbdebf3fc65e5400737738f2dda4c86051 (patch) | |
tree | 188d8202e2f4f0437454a575d8f2c120a82368d0 /perl-install | |
parent | e3b7e42327f2d7c744007f647e44b9725b49fe11 (diff) | |
download | drakx-2af8e1cbdebf3fc65e5400737738f2dda4c86051.tar drakx-2af8e1cbdebf3fc65e5400737738f2dda4c86051.tar.gz drakx-2af8e1cbdebf3fc65e5400737738f2dda4c86051.tar.bz2 drakx-2af8e1cbdebf3fc65e5400737738f2dda4c86051.tar.xz drakx-2af8e1cbdebf3fc65e5400737738f2dda4c86051.zip |
gzip report.bug
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_steps.pm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 7d1929731..cb361ca84 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -961,7 +961,11 @@ sub miscellaneousAfter { #------------------------------------------------------------------------------ sub exitInstall { my ($o) = @_; - eval { output "$o->{prefix}/root/drakx/report.bug", install_any::report_bug($o->{prefix}) }; + eval { + my $report = '/root/drakx/report.bug'; + output "$o->{prefix}$report", install_any::report_bug($o->{prefix}); + run_program::rooted($o->{prefix}, 'gzip', $report); + }; install_any::getAndSaveAutoInstallFloppy($o, 1, "$o->{prefix}/root/drakx/replay_install.img" ); eval { output "$o->{prefix}/root/drakx/README", "This directory contains several installation-related files, mostly log files (very useful if you ever report a bug!). |