From 7e3b5efdf04e800bbb1022f7c530eaa18597681b Mon Sep 17 00:00:00 2001 From: Kroese Date: Sat, 30 May 2026 19:21:48 +0200 Subject: [PATCH] feat: Change disk format to qcow2 --- src/install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/src/install.sh b/src/install.sh index 11602ce..46b0631 100644 --- a/src/install.sh +++ b/src/install.sh @@ -105,6 +105,7 @@ findFile() { } USER_PORTS="22,80,443,445,${USER_PORTS:-}" +[ -z "${DISK_FMT:-}" ] && DISK_FMT="qcow2" if ! makeDir "$STORAGE"; then error "Failed to create directory \"$STORAGE\" !" && exit 33