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=902bc0709a091a1ca5256848e72eefd096e15ee7;hp=0000000000000000000000000000000000000000;hb=f8d2fa05f607bf4440317c21ea0858d78b26891d;hpb=a49504d976dc57d6c50be3a632a98acacdac962d diff --git a/etc/grml/fai/config/scripts/GRMLBASE/95-package-information b/etc/grml/fai/config/scripts/GRMLBASE/95-package-information new file mode 100755 index 0000000..902bc07 --- /dev/null +++ b/etc/grml/fai/config/scripts/GRMLBASE/95-package-information @@ -0,0 +1,22 @@ +#!/bin/sh +# Filename: /etc/grml/fai/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 + +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 +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 + +## END OF FILE #################################################################