From 06e703a8274539b32d2fb44e9135ab03a04aba5c Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Fri, 2 Feb 2024 12:55:43 +0100 Subject: [PATCH] Fix usage of FAI's shell.log vs. scripts.log We check for scripts.log, but still use shell.log, d'oh :) --- grml-live | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grml-live b/grml-live index cc1dbfb..72fe591 100755 --- a/grml-live +++ b/grml-live @@ -819,7 +819,7 @@ else # FAI versions >=6.0 always writes to scripts.log if [ -r "$CHECKLOG/scripts.log" ] ; then - grep 'FAILED with exit code' $CHECKLOG/shell.log >> $LOGFILE && ERROR=6 + grep 'FAILED with exit code' $CHECKLOG/scripts.log >> $LOGFILE && ERROR=6 fi if [ -r "$CHECKLOG/fai.log" ] ; then -- 2.1.4