From: Michael Prokop Date: Mon, 1 Feb 2010 19:37:06 +0000 (+0100) Subject: Ignore $EXIT_ON_MISSING_PACKAGES if running a dirty build though -B. X-Git-Tag: v0.9.35~13 X-Git-Url: https://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=563f2f26944598d6c061044da3cbea08fdd7957b;hp=4c955a6b6838346bb44af4557891129e2016f9d0 Ignore $EXIT_ON_MISSING_PACKAGES if running a dirty build though -B. --- diff --git a/grml-live b/grml-live index e67a5ab..0240972 100755 --- a/grml-live +++ b/grml-live @@ -593,7 +593,7 @@ CHECKLOG=/var/log/fai/$HOSTNAME/last # package validator if [ -r "$CHECKLOG/package_errors.log" ] && grep -q '[a-z]' "$CHECKLOG/package_errors.log" ; then - if [ -n "$EXIT_ON_MISSING_PACKAGES" ] ; then + if [ -n "$EXIT_ON_MISSING_PACKAGES" -a -z "$BUILD_DIRTY" ] ; then eerror "The following packages were requested for installation but could not be processed:" cat $CHECKLOG/package_errors.log eerror "... exiting as requested via \$EXIT_ON_MISSING_PACKAGES."