#!/bin/bash # Filename: ${GRML_FAI_CONFIG}/config/scripts/GRMLBASE/95-package-information # Purpose: store package information of chroot system # Authors: grml-team (grml.org), (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2 or any later version. ################################################################################ set -u set -e if ! [ -w "$LOGDIR" ] ; then echo "Error: can not write to ${LOGDIR}. Exiting.">&2 exit 1 else # store package list for the build process logs as well: COLUMNS=200 $ROOTCMD dpkg --list > "${LOGDIR}"/dpkg.list COLUMNS=200 $ROOTCMD dpkg --get-selections > "${LOGDIR}"/dpkg.selections # store list of packages sorted by size: if [ -x $target/usr/bin/dpkg-query ] ; then $ROOTCMD dpkg-query -W --showformat='${Package}\t${Installed-Size}\n' > \ "${LOGDIR}"/packages.size fi fi ## END OF FILE ################################################################# # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2