diff options
author | Thierry Vignaud <tv@mandriva.org> | 2009-01-16 10:03:16 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2009-01-16 10:03:16 +0000 |
commit | 1a961f42a59ba8c1d57b74a848caab177917f195 (patch) | |
tree | 85dea57729c6c3b57e327a2e887e67255fa9cf19 /perl-install/standalone | |
parent | a81c1f27b0e20c1c1e0b9fb0ae98ea712c4d79e1 (diff) | |
download | drakx-1a961f42a59ba8c1d57b74a848caab177917f195.tar drakx-1a961f42a59ba8c1d57b74a848caab177917f195.tar.gz drakx-1a961f42a59ba8c1d57b74a848caab177917f195.tar.bz2 drakx-1a961f42a59ba8c1d57b74a848caab177917f195.tar.xz drakx-1a961f42a59ba8c1d57b74a848caab177917f195.zip |
ask to attach /etc/fstab & the like when debugging a boot issue
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-x | perl-install/standalone/drakbug | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/perl-install/standalone/drakbug b/perl-install/standalone/drakbug index d8573d681..5ddc2b727 100755 --- a/perl-install/standalone/drakbug +++ b/perl-install/standalone/drakbug @@ -160,7 +160,14 @@ gtkadd($window->{window}, P("It would be very useful to attach to your report the output of the following command: %s.", "Things useful to attach to your report are the output of the following commands: %s.", scalar(@commands), - join(", ", map { N("'%s'", $_) } @commands)) + join(", ", map { N("'%s'", $_) } @commands)) . + if_(is_a_boot_issue(), + "\n" . + N("You should also attach the following files: %s as well as %s.", + '/etc/modprobe.conf, /etc/fstab, /boot/grub/menu.lst, /boot/grub/devices.map', + '/etc/lilo.conf', + ) + ) ] ])), 0, gtknew('Title2', label => N("Please describe what you were doing when it crashed:"), width => $width), |