X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Fscripts%2FGRMLBASE%2F95-package-information;h=1d148e3d1aa26380f302675582182e9f176e24a8;hb=7477e438623f7581965a95d82cba282e38fdeb6e;hp=2cce18ecca816a6b5ff24b5576628f26cec299a4;hpb=9a408a8ff28183b77116cdd73e368834eabdb5ae;p=grml-live.git diff --git a/etc/grml/fai/config/scripts/GRMLBASE/95-package-information b/etc/grml/fai/config/scripts/GRMLBASE/95-package-information index 2cce18e..1d148e3 100755 --- a/etc/grml/fai/config/scripts/GRMLBASE/95-package-information +++ b/etc/grml/fai/config/scripts/GRMLBASE/95-package-information @@ -1,22 +1,27 @@ -#!/bin/sh -# Filename: /etc/grml/fai/config/scripts/GRMLBASE/95-package-information +#!/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. -# 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 +set -u +set -e -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 +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;10}\n' > \ + "${LOGDIR}"/packages.size + fi fi -COLUMNS=200 $ROOTCMD dpkg --list > /var/log/fai/dirinstall/$HOSTNAME/dpkg.list -COLUMNS=200 $ROOTCMD dpkg --get-selections > /var/log/fai/dirinstall/$HOSTNAME/dpkg.selections - ## END OF FILE ################################################################# +# vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2