From 671dee66614f2e0af5ff96ca098da76fe7cbf88b Mon Sep 17 00:00:00 2001 From: Kroese Date: Thu, 27 Apr 2023 21:01:16 +0200 Subject: [PATCH] Sync --- run/disk.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/run/disk.sh b/run/disk.sh index 8d664db..d69354d 100644 --- a/run/disk.sh +++ b/run/disk.sh @@ -1,11 +1,11 @@ #!/usr/bin/env bash set -eu -# Docker environment variabeles +# Docker environment variables -: ${DISK_IO:='native'} # I/O Mode, can be set to 'native', 'threads' or 'io_turing' -: ${DISK_ROTATION:='1'} # Rotation rate, set to 1 for SSD storage and increase for HDD -: ${DISK_CACHE:='none'} # Caching mode, can be set to 'writeback' for better performance +: ${DISK_IO:='native'} # I/O Mode, can be set to 'native', 'threads' or 'io_turing' +: ${DISK_ROTATION:='1'} # Rotation rate, set to 1 for SSD storage and increase for HDD +: ${DISK_CACHE:='none'} # Caching mode, can be set to 'writeback' for better performance BOOT="$STORAGE/boot.img" [ ! -f "$BOOT" ] && echo "ERROR: Boot image does not exist ($BOOT)" && exit 81