From e30956abf41f96e8346dfc34f7e513f3de5ee8e0 Mon Sep 17 00:00:00 2001 From: oddlama Date: Wed, 18 Nov 2020 14:23:35 +0100 Subject: [PATCH] Fix ext4 case --- scripts/internal_config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/internal_config.sh b/scripts/internal_config.sh index 06e716b..28eaa1f 100644 --- a/scripts/internal_config.sh +++ b/scripts/internal_config.sh @@ -303,7 +303,7 @@ create_default_disk_layout() { if [[ $root_fs == "btrfs" ]]; then DISK_ID_ROOT_TYPE="btrfs" DISK_ID_ROOT_MOUNT_OPTS="defaults,noatime,compress-force=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