X-Git-Url: https://git.grml.org/?a=blobdiff_plain;ds=sidebyside;f=etc%2Fgrml%2Ffai%2Fconfig%2Fscripts%2FGRMLBASE%2F95-package-information;h=f9495fef1a47ac9e17647908e09ad060befeecb1;hb=bfe1fbd4df16c2c92cbed7e19cb52b2d533bf61a;hp=25c88abfbfd66a49d3301c973f70cc84b865a6a4;hpb=fd4687b8a3e9940f1e77db32fea0b3b42fe64fed;p=grml-live.git diff --git a/etc/grml/fai/config/scripts/GRMLBASE/95-package-information b/etc/grml/fai/config/scripts/GRMLBASE/95-package-information index 25c88ab..f9495fe 100755 --- a/etc/grml/fai/config/scripts/GRMLBASE/95-package-information +++ b/etc/grml/fai/config/scripts/GRMLBASE/95-package-information @@ -1,22 +1,20 @@ -#!/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: Fri Dec 21 23:22:17 CET 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/ -# 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 exit 1 @@ -32,3 +30,4 @@ else fi ## END OF FILE ################################################################# +# vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2