From c6b2d52ff7f5d33fa29999f0abf02d212fc663a0 Mon Sep 17 00:00:00 2001 From: thiblizz <101073848+thiblizz@users.noreply.github.com> Date: Sat, 14 Oct 2023 23:47:48 +0200 Subject: [PATCH] fix: adjust wrong root_fs check --- scripts/config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/config.sh b/scripts/config.sh index 0bc92ef..c1a4e22 100644 --- a/scripts/config.sh +++ b/scripts/config.sh @@ -488,7 +488,7 @@ function create_raid0_luks_layout() { if [[ $root_fs == "btrfs" ]]; then DISK_ID_ROOT_TYPE="btrfs" DISK_ID_ROOT_MOUNT_OPTS="defaults,noatime,compress=zstd,subvol=/root" - elif [[ $root_fs == "btrfs" ]]; then + elif [[ $root_fs == "ext4" ]]; then DISK_ID_ROOT_TYPE="ext4" DISK_ID_ROOT_MOUNT_OPTS="defaults,noatime,errors=remount-ro,discard" else