Skip to content

Commit

Permalink
Add new scripts for retreiving bugs via apt-listbugs and storing pack…
Browse files Browse the repository at this point in the history
…age selection
  • Loading branch information
Michael Prokop committed Oct 13, 2007
1 parent a49504d commit f8d2fa0
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 1 deletion.
3 changes: 3 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ grml-live (0.0.5) unstable; urgency=low
- grml-live_autobuild_grml64-small_sid.sh
* Some more FAI error checking.
* Update buildd scripts (better subject handling).
* Re-enable 'Acquire::http::Pipeline-Depth' workaround'
* Add new scripts for retreiving bugs via apt-listbugs
and storing package selection inside log directory.
* Add new packages to GRML_FULL:
- ack-grep
- mailplate
Expand Down
2 changes: 1 addition & 1 deletion etc/grml/fai/config/hooks/instsoft.GRMLBASE
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ set -e

# work around http://trac.lighttpd.net/trac/ticket/657
# should be removed later on:
# echo "Acquire::http::Pipeline-Depth "0";" >> $target/etc/apt/apt.conf
echo "Acquire::http::Pipeline-Depth "0";" >> $target/etc/apt/apt.conf

# install grml keys:
gpg --keyserver subkeys.pgp.net --recv-keys F61E2E7CECDEA787
Expand Down
22 changes: 22 additions & 0 deletions etc/grml/fai/config/scripts/GRMLBASE/95-package-information
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/bin/sh
# Filename: /etc/grml/fai/config/scripts/GRMLBASE/95-package-information
# Purpose: store package information of chroot system
# Authors: grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
# Bug-Reports: see http://grml.org/bugs/
# License: This file is licensed under the GPL v2 or any later version.
# Latest change: Sat Oct 13 17:48:38 CEST 2007 [mika]
################################################################################

HOSTNAME=''
[ -r /etc/grml/grml-live.conf ] && . /etc/grml/grml-live.conf
[ -n "$HOSTNAME" ] || HOSTNAME=grml

if [ -x $target/usr/bin/dpkg-query ] ; then
$ROOTCMD dpkg-query -W --showformat='${Package}\t${Installed-Size;10}\n' > \
/var/log/fai/dirinstall/$HOSTNAME/packages.size
fi

$ROOTCMD COLUMNS=200 dpkg --list > /var/log/fai/dirinstall/$HOSTNAME/dpkg.list
$ROOTCMD COLUMNS=200 dpkg --get-selections > /var/log/fai/dirinstall/$HOSTNAME/dpkg.selections

## END OF FILE #################################################################
23 changes: 23 additions & 0 deletions etc/grml/fai/config/scripts/GRMLBASE/96-apt-listbugs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/bin/sh
# Filename: /etc/grml/fai/config/scripts/GRMLBASE/96-apt-listbugs
# Purpose: retreive list of bugreports of installed packages inside chroot
# Authors: grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
# Bug-Reports: see http://grml.org/bugs/
# License: This file is licensed under the GPL v2 or any later version.
# Latest change: Sat Oct 13 18:03:15 CEST 2007 [mika]
################################################################################

HOSTNAME=''
[ -r /etc/grml/grml-live.conf ] && . /etc/grml/grml-live.conf
[ -n "$HOSTNAME" ] || HOSTNAME=grml

if [ -x $target/usr/sbin/apt-listbugs ] ; then
for severity in critical grave serious ; do
apt-listbugs -s $severity list $(apt-show-source | \
grep -v -e 'not installed' -e '--------------' -e 'Version' | \
awk '{print $4;}' | grep -v '^[() ]*$'| sort | uniq) \
/var/log/fai/dirinstall/$HOSTNAME/bugs.${severity}
done
fi

## END OF FILE #################################################################

0 comments on commit f8d2fa0

Please sign in to comment.