X-Git-Url: https://git.grml.org/?p=grml-live.git;a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Fscripts%2FGRMLBASE%2F95-package-information;h=f9495fef1a47ac9e17647908e09ad060befeecb1;hp=9a9fd84493bc5dfcdeaaed261a0540b93363a4fd;hb=bfe1fbd4df16c2c92cbed7e19cb52b2d533bf61a;hpb=130429e20fb319f3ec6a457f3219b7e52216b542 diff --git a/etc/grml/fai/config/scripts/GRMLBASE/95-package-information b/etc/grml/fai/config/scripts/GRMLBASE/95-package-information index 9a9fd84..f9495fe 100755 --- a/etc/grml/fai/config/scripts/GRMLBASE/95-package-information +++ b/etc/grml/fai/config/scripts/GRMLBASE/95-package-information @@ -1,28 +1,33 @@ -#!/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] ################################################################################ +set -u +set -e + HOSTNAME='' [ -r /etc/grml/grml-live.conf ] && . /etc/grml/grml-live.conf [ -r /etc/grml/grml-live.local ] && . /etc/grml/grml-live.local [ -n "$HOSTNAME" ] || HOSTNAME=grml +PACKAGE_LOG=/var/log/fai/"$HOSTNAME"/last/ -if ! [ -d /var/log/fai/"$HOSTNAME"/last/ ] ; then - echo "Error: /var/log/fai/"$HOSTNAME"/last/ not available. Exiting.">&2 +if ! [ -w "$PACKAGE_LOG" ] ; then + echo "Error: can not write to ${PACKAGE_LOG}. Exiting.">&2 exit 1 +else + # store package list for the build process logs as well: + COLUMNS=200 $ROOTCMD dpkg --list > "${PACKAGE_LOG}"/dpkg.list + COLUMNS=200 $ROOTCMD dpkg --get-selections > "${PACKAGE_LOG}"/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' > \ + "${PACKAGE_LOG}"/packages.size + fi fi -if [ -x $target/usr/bin/dpkg-query ] ; then - $ROOTCMD dpkg-query -W --showformat='${Package}\t${Installed-Size;10}\n' > \ - /var/log/fai/$HOSTNAME/last/packages.size -fi - -COLUMNS=200 $ROOTCMD dpkg --list > /var/log/fai/$HOSTNAME/last/dpkg.list -COLUMNS=200 $ROOTCMD dpkg --get-selections > /var/log/fai/$HOSTNAME/last/dpkg.selections - ## END OF FILE ################################################################# +# vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2