* Install the reportbug scripts for grub2 too, since users might still use

it for bugfiling.
    - grub2.dirs
    - grub2.install
This commit is contained in:
rmh 2007-05-15 19:52:26 +00:00
parent 070f908f4a
commit 80c59d6043
7 changed files with 25 additions and 1 deletions

9
debian/changelog vendored
View File

@ -39,8 +39,15 @@ grub2 (1.95+20070515-1) unstable; urgency=low
* See multiple references above. (Closes: #423217)
* grub-{pc,efi,of}.{dirs,install}: Install presubj in the right directory
to make it work again (oops).
* Add reportbug script to gather debugging information. (Closes: #423218)
- script: New.
- grub-{pc,efi,of}.install: Install it.
* Install the reportbug scripts for grub2 too, since users might still use
it for bugfiling.
- grub2.dirs
- grub2.install
-- Robert Millan <rmh@aybabtu.com> Tue, 15 May 2007 19:56:44 +0200
-- Robert Millan <rmh@aybabtu.com> Tue, 15 May 2007 21:01:34 +0200
grub2 (1.95+20070507-1) unstable; urgency=low

View File

@ -1,3 +1,4 @@
debian/presubj usr/share/bug/grub-efi
debian/script usr/share/bug/grub-efi
debian/default etc
build/unifont.pff boot/grub

View File

@ -1,3 +1,4 @@
debian/presubj usr/share/bug/grub-of
debian/script usr/share/bug/grub-of
debian/default etc
build/unifont.pff boot/grub

View File

@ -1,4 +1,5 @@
debian/presubj usr/share/bug/grub-pc
debian/script usr/share/bug/grub-pc
debian/default etc
build/unifont.pff boot/grub
debian/legacy/update-grub usr/lib/grub-legacy

1
debian/grub2.dirs vendored Normal file
View File

@ -0,0 +1 @@
usr/share/bug/grub2

2
debian/grub2.install vendored Normal file
View File

@ -0,0 +1,2 @@
debian/presubj usr/share/bug/grub2
debian/script usr/share/bug/grub2

11
debian/script vendored Normal file
View File

@ -0,0 +1,11 @@
#!/bin/bash -e
for i in /proc/mounts /boot/grub/{device.map,grub.cfg} ; do
if test -e $i ; then
echo -e "\n*********************** BEGIN $i" >&3
cat $i >&3
echo "*********************** END $i" >&3
fi
done
exit 0