X-Git-Url: https://git.grml.org/?a=blobdiff_plain;f=grml-live;h=fa478b833b6ae2f591500399f62217186e4d367d;hb=74c4bce9cc66d70eff3023b8a048d0228869a12e;hp=1bb84b6bca0ad77434c69008e0bdcd753e9fb67d;hpb=cb68d924f752d9f0cfc2844e2d984730cdfe208e;p=grml-live.git diff --git a/grml-live b/grml-live index 1bb84b6..fa478b8 100755 --- a/grml-live +++ b/grml-live @@ -796,10 +796,16 @@ else grep 'Unable to write mmap - msync (28 No space left on device)' $CHECKLOG/software.log >> $LOGFILE && ERROR=5 fi + # FAI versions <6.0 used to write to shell.log if [ -r "$CHECKLOG/shell.log" ] ; then grep 'FAILED with exit code' $CHECKLOG/shell.log >> $LOGFILE && ERROR=6 fi + # 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 + fi + if [ -r "$CHECKLOG/fai.log" ] ; then grep 'updatebase.*FAILED with exit code' "$CHECKLOG/fai.log" >> "$LOGFILE" && ERROR=7 grep 'instsoft.*FAILED with exit code' "$CHECKLOG/fai.log" >> "$LOGFILE" && ERROR=8