Merge branch 'mika/release_0.14.1'
[grml-live.git] / etc / grml / fai / config / scripts / GRMLBASE / 96-apt-listbugs
1 #!/bin/bash
2 # Filename:      /etc/grml/fai/config/scripts/GRMLBASE/96-apt-listbugs
3 # Purpose:       retreive list of bugreports of installed packages inside chroot
4 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2 or any later version.
7 ################################################################################
8
9 set -e
10
11 if [ -r $target/etc/apt/apt.conf.d/10apt-listbugs ] ; then
12    if [ -x $target/usr/sbin/apt-listbugs ] ; then
13       sed -i 's#//DPkg::#DPkg::#' $target/etc/apt/apt.conf.d/10apt-listbugs
14    fi
15 fi
16
17 if ifclass RELEASE ; then
18
19   HOSTNAME=''
20   [ -r /etc/grml/grml-live.conf ]  && . /etc/grml/grml-live.conf
21   [ -r /etc/grml/grml-live.local ] && . /etc/grml/grml-live.local
22   [ -n "$HOSTNAME" ] || HOSTNAME=grml
23
24   if [ -r /etc/resolv.conf ] ; then
25     if [ -d $target/etc/resolvconf/run ] ; then # resolvconf
26       # sanity check to avoid "input file is output file",
27       # see http://bts.grml.org/grml/issue984
28       if ! [ -L $target/etc/resolvconf/run/resolv.conf ] ; then
29         cat /etc/resolv.conf >> $target/etc/resolvconf/run/resolv.conf
30       else
31         echo "Error: /etc/resolvconf/run/resolv.conf in chroot should not be a symlink." >&2
32         echo "       Looks like something is wrong, please fix manually." >&2
33         exit 1
34       fi
35     else # no resolvconf installed in chroot
36       if ! [ -L $target/etc/resolv.conf ] ; then
37         cat /etc/resolv.conf >> $target/etc/resolv.conf
38       else
39         echo "Error: /etc/resolv.conf in chroot should not be a symlink (resolvconf not installed)." >&2
40         exit 1
41       fi
42     fi
43   fi
44
45   if [ -x $target/usr/sbin/apt-listbugs -a -x $target/usr/bin/apt-show-source ] && \
46      [ -x $target/etc/apt/grml/listbugs ] ; then
47      for severity in critical grave serious ; do
48          SEVERITY=$severity $ROOTCMD /etc/apt/grml/listbugs > \
49          /var/log/fai/$HOSTNAME/last/bugs.${severity} || true # make sure it does not fail
50      done
51   fi
52
53 fi
54
55 ## END OF FILE #################################################################