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=0a7a430a38e655aec3aaa2b76d688f2e5c1d2d51;hp=1cd03edc9d6805852fd35e8906073b11912da4df;hb=11fd80a246f79b851b0a98881e105563734d5325;hpb=2def18e419f1474c3904672ce297babbb4b9b501 diff --git a/etc/grml/fai/config/scripts/GRMLBASE/95-package-information b/etc/grml/fai/config/scripts/GRMLBASE/95-package-information index 1cd03ed..0a7a430 100755 --- a/etc/grml/fai/config/scripts/GRMLBASE/95-package-information +++ b/etc/grml/fai/config/scripts/GRMLBASE/95-package-information @@ -1,33 +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. ################################################################################ -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/ +set -u +set -e -# generate the package list and store it on the ISO itself for grml-docs: -[ -d $target/usr/share/doc/grml-docs/packages ] || mkdir $target/usr/share/doc/grml-docs/packages -COLUMNS=200 $ROOTCMD dpkg --list > $target/usr/share/doc/grml-docs/packages/dpkg_list - -if ! [ -w "$PACKAGE_LOG" ] ; then - echo "Error: can not write to ${PACKAGE_LOG}. Exiting.">&2 +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 > "${PACKAGE_LOG}"/dpkg.list - COLUMNS=200 $ROOTCMD dpkg --get-selections > "${PACKAGE_LOG}"/dpkg.selections + 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' > \ - "${PACKAGE_LOG}"/packages.size + $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