0a7a430a38e655aec3aaa2b76d688f2e5c1d2d51
[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 if ! [ -w "$LOGDIR" ] ; then
13    echo "Error: can not write to ${LOGDIR}. Exiting.">&2
14    exit 1
15 else
16    # store package list for the build process logs as well:
17    COLUMNS=200 $ROOTCMD dpkg --list > "${LOGDIR}"/dpkg.list
18    COLUMNS=200 $ROOTCMD dpkg --get-selections > "${LOGDIR}"/dpkg.selections
19    # store list of packages sorted by size:
20    if [ -x $target/usr/bin/dpkg-query ] ; then
21       $ROOTCMD dpkg-query -W --showformat='${Package}\t${Installed-Size}\n' > \
22       "${LOGDIR}"/packages.size
23    fi
24 fi
25
26 ## END OF FILE #################################################################
27 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2