X-Git-Url: http://git.grml.org/?p=grml-live.git;a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Fscripts%2FGRMLBASE%2F95-package-information;h=f1196de63c3f104dc6eb7814cf711d526f913ade;hp=6886d9f531287d55fe8cf95ae9648d127ac4a335;hb=f3b335ea5c94d5cf24ec6b9184106b298849f311;hpb=9d16d7a6c9686f80a18e70bc8b5e67193dc0ffba diff --git a/etc/grml/fai/config/scripts/GRMLBASE/95-package-information b/etc/grml/fai/config/scripts/GRMLBASE/95-package-information index 6886d9f..f1196de 100755 --- a/etc/grml/fai/config/scripts/GRMLBASE/95-package-information +++ b/etc/grml/fai/config/scripts/GRMLBASE/95-package-information @@ -1,11 +1,14 @@ #!/bin/bash -# Filename: /etc/grml/fai/config/scripts/GRMLBASE/95-package-information +# 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. ################################################################################ +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 @@ -13,7 +16,7 @@ HOSTNAME='' 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 +[ -d $target/usr/share/doc/grml-docs/packages ] || mkdir -p $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 @@ -31,3 +34,4 @@ else fi ## END OF FILE ################################################################# +# vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2