summaryrefslogtreecommitdiffstats
path: root/pyanaconda/ui/gui/spokes/custom.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyanaconda/ui/gui/spokes/custom.py')
-rw-r--r--pyanaconda/ui/gui/spokes/custom.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/pyanaconda/ui/gui/spokes/custom.py b/pyanaconda/ui/gui/spokes/custom.py
index 9838e2249..bd1088f26 100644
--- a/pyanaconda/ui/gui/spokes/custom.py
+++ b/pyanaconda/ui/gui/spokes/custom.py
@@ -125,7 +125,11 @@ raid_level_features = {"raid0": ["Performance"],
"single": []}
# disabled features by raid_level
-raid_disabled_features = {"raid1": ["Error", "DistError", "RedundantError"]}
+raid_disabled_features = {"raid1": ["Error", "DistError", "RedundantError"],
+ "raid10": ["Error", "DistError", "RedundantError"],
+ "raid4": ["Redundancy", "DistError", "RedundantError"],
+ "raid5": ["Redundancy", "Error", "RedundantError"],
+ "raid6": ["Redundancy", "Error", "DistError"]}
# reference raid level by feature name
feature_raid_levels = {"Performance": "raid0",