From d680eecbdc7c11c1e66defabbd79f058740659cf Mon Sep 17 00:00:00 2001 From: zen0bit Date: Tue, 9 Apr 2024 04:04:58 +0200 Subject: [PATCH] Revert "add disk health check" This reverts commit 0e4fc7e79aad55d9e335c3f61ec8ecd58d8d082a. --- quickemu | 8 -------- 1 file changed, 8 deletions(-) diff --git a/quickemu b/quickemu index 0f1cb5e..c00388c 100755 --- a/quickemu +++ b/quickemu @@ -1749,14 +1749,6 @@ if [ -n "${VM}" ] && [ -e "${VM}" ]; then exit 1 fi - DiskChkMsg="$("$QEMU_IMG" check -q "${disk_img}" 2>&1)" - - if [[ $DiskChkMsg ]]; then - echo; echo "ERROR! disk.qcow2 has problems. Try qemu-img check --help." - echo; echo "$DiskChkMsg" ; echo - exit 1 - fi - VMDIR=$(dirname "${disk_img}") VMNAME=$(basename "${VM}" .conf) VMPATH=$(realpath "$(dirname "${VM}")")