From ce0e4f88e2e37e5542b853d1f6845349913e29c4 Mon Sep 17 00:00:00 2001 From: Kroese Date: Tue, 18 Apr 2023 18:26:15 +0200 Subject: [PATCH] Make preallocation configurable --- run/disk.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run/disk.sh b/run/disk.sh index 6f4c593..4d7e829 100644 --- a/run/disk.sh +++ b/run/disk.sh @@ -81,7 +81,7 @@ if [ ! -f "${DATA}" ]; then if ! fallocate -l "${DATA_SIZE}" "${DATA}"; then rm -f "${DATA}" - echo "ERROR: Could not allocate file for virtual disk." && exit 87 + echo "ERROR: Could not allocate a file for the virtual disk." && exit 87 fi fi