From 2ad423fb6ab13906d5cfccbfde20fd8984cf07a5 Mon Sep 17 00:00:00 2001 From: benya Date: Wed, 25 Feb 2026 01:36:59 +0300 Subject: [PATCH] Fix md RAID detection for lsblk raid* types --- system_checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system_checks.py b/system_checks.py index d991604..815d29c 100644 --- a/system_checks.py +++ b/system_checks.py @@ -90,7 +90,7 @@ def list_md_arrays() -> list[str]: if len(parts) != 2: continue name, typ = parts - if typ == "raid" and name.startswith("md"): + if typ.startswith("raid") and name.startswith("md"): arrays.append(f"/dev/{name}") return arrays