f9495fef1a47ac9e17647908e09ad060befeecb1
[grml-live.git] / etc / grml / fai / config / scripts / GRMLBASE / 95-package-information
1 #!/bin/bash
2 # Filename:      ${GRML_FAI_CONFIG}/config/scripts/GRMLBASE/95-package-information
3 # Purpose:       store package information of chroot system
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 -u
10 set -e
11
12 HOSTNAME=''
13 [ -r /etc/grml/grml-live.conf ]  && . /etc/grml/grml-live.conf
14 [ -r /etc/grml/grml-live.local ] && . /etc/grml/grml-live.local
15 [ -n "$HOSTNAME" ] || HOSTNAME=grml
16 PACKAGE_LOG=/var/log/fai/"$HOSTNAME"/last/
17
18 if ! [ -w "$PACKAGE_LOG" ] ; then
19    echo "Error: can not write to ${PACKAGE_LOG}. Exiting.">&2
20    exit 1
21 else
22    # store package list for the build process logs as well:
23    COLUMNS=200 $ROOTCMD dpkg --list > "${PACKAGE_LOG}"/dpkg.list
24    COLUMNS=200 $ROOTCMD dpkg --get-selections > "${PACKAGE_LOG}"/dpkg.selections
25    # store list of packages sorted by size:
26    if [ -x $target/usr/bin/dpkg-query ] ; then
27       $ROOTCMD dpkg-query -W --showformat='${Package}\t${Installed-Size;10}\n' > \
28       "${PACKAGE_LOG}"/packages.size
29    fi
30 fi
31
32 ## END OF FILE #################################################################
33 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2