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=ff35306eb856e3d4ff84d8a38ed4f02684e7d90d;hp=902bc0709a091a1ca5256848e72eefd096e15ee7;hb=352bbb624bec8561621a03af05e3c71b5cb11a22;hpb=f8d2fa05f607bf4440317c21ea0858d78b26891d diff --git a/etc/grml/fai/config/scripts/GRMLBASE/95-package-information b/etc/grml/fai/config/scripts/GRMLBASE/95-package-information index 902bc07..ff35306 100755 --- a/etc/grml/fai/config/scripts/GRMLBASE/95-package-information +++ b/etc/grml/fai/config/scripts/GRMLBASE/95-package-information @@ -4,19 +4,30 @@ # 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] +# Latest change: Mon Dec 17 00:54:41 CET 2007 [mika] ################################################################################ HOSTNAME='' -[ -r /etc/grml/grml-live.conf ] && . /etc/grml/grml-live.conf +[ -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 +if ! [ -w /var/log/fai/"$HOSTNAME"/last/ ] ; then + echo "Error: can not write to /var/log/fai/"$HOSTNAME"/last/. Exiting.">&2 + exit 1 +fi + 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 + /var/log/fai/$HOSTNAME/last/packages.size fi -$ROOTCMD COLUMNS=200 dpkg --list > /var/log/fai/dirinstall/$HOSTNAME/dpkg.list -$ROOTCMD COLUMNS=200 dpkg --get-selections > /var/log/fai/dirinstall/$HOSTNAME/dpkg.selections +# 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 + +# store package list for the build process logs as well: +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 #################################################################