diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/g-i-installation.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/g-i-installation.sh b/bin/g-i-installation.sh index cb46e1bc..83fca526 100755 --- a/bin/g-i-installation.sh +++ b/bin/g-i-installation.sh @@ -888,7 +888,9 @@ monitor_system() { SOFTWARE_PROBLEM=$(grep "The failing step is: Select and install software" $GOCR || true) BUILD_LTSP_PROBLEM=$(grep "The failing step is: Build LTSP chroot" $GOCR || true) rm $GOCR $GOCR.ppm - if [[ "$LAST_LINE" =~ .*Power\ down.* ]] ; then + if [[ "$LAST_LINE" =~ .*Power\ down.* ]] || + [[ "$LAST_LINE" =~ .*System\ halted.* ]] || + [[ "$LAST_LINE" =~ .*Cannot\ .inalize\ remaining\ .ile\ systems.* ]]; then echo "QEMU was powered down." break elif [ ! -z "$STACK_LINE" ] ; then |