X-Git-Url: https://git.grml.org/?p=grml-live.git;a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Fscripts%2FGRMLBASE%2F95-package-information;fp=etc%2Fgrml%2Ffai%2Fconfig%2Fscripts%2FGRMLBASE%2F95-package-information;h=1d148e3d1aa26380f302675582182e9f176e24a8;hp=700abf7ac3cc7e31affec3d2895542d88b0eb4c6;hb=436d892c18acb32cf96f4e4c2cc80e73ea8b7386;hpb=c2fac3a755349df217d4a036807ac04332644f44 diff --git a/etc/grml/fai/config/scripts/GRMLBASE/95-package-information b/etc/grml/fai/config/scripts/GRMLBASE/95-package-information index 700abf7..1d148e3 100755 --- a/etc/grml/fai/config/scripts/GRMLBASE/95-package-information +++ b/etc/grml/fai/config/scripts/GRMLBASE/95-package-information @@ -9,23 +9,17 @@ set -u set -e -HOSTNAME='' -[ -r /etc/grml/grml-live.conf ] && . /etc/grml/grml-live.conf -[ -n "$GRML_LIVE_LOCAL_CONFIG" ] && . "$GRML_LIVE_LOCAL_CONFIG" -[ -n "$HOSTNAME" ] || HOSTNAME=grml -PACKAGE_LOG=/var/log/fai/"$HOSTNAME"/last/ - -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 + "${LOGDIR}"/packages.size fi fi