Merge initramfs scripts
[grml-live.git] / etc / grml / fai / config / scripts / GRMLBASE / 01-packages
1 #!/bin/bash
2 # Filename:      ${GRML_FAI_CONFIG}/config/scripts/GRMLBASE/01-packages
3 # Purpose:       check for packages that have been requested but could not be installed
4 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2 or any later version.
7 ################################################################################
8
9 set -u
10 set -e
11
12 PACKAGE_LIST=/var/log/install_packages.list
13
14 if ! [ -r "$target/${PACKAGE_LIST}" ] ; then
15    echo "No $target/${PACKAGE_LIST} found, will not run package validation check."
16 else
17    printf "Validating package list: "
18    if $ROOTCMD dpkg --list $(grep -v '^#' $target/${PACKAGE_LIST} | grep -v -- '-$') >/dev/null 2>$LOGDIR/package_errors.log ; then
19       printf "done - no errors found\n"
20    else
21       printf "failed (there have been errors, find them at $LOGDIR/package_errors.log)\n"
22    fi
23 fi
24
25 ## END OF FILE #################################################################
26 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2