From 390741637d9a2d19155434784ab32924cbc039f1 Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Tue, 22 Jan 2013 12:43:08 -0500 Subject: Default to mirrored RAID instead of striped (#888867). --- pyanaconda/ui/gui/spokes/custom.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pyanaconda/ui/gui/spokes/custom.py') diff --git a/pyanaconda/ui/gui/spokes/custom.py b/pyanaconda/ui/gui/spokes/custom.py index 4e0cb5f48..ef2c841de 100644 --- a/pyanaconda/ui/gui/spokes/custom.py +++ b/pyanaconda/ui/gui/spokes/custom.py @@ -1350,7 +1350,7 @@ class CustomPartitioningSpoke(NormalSpoke, StorageChecker): raid_combo = self.builder.get_object("raidLevelCombo") if device_type == DEVICE_TYPE_MD: - base_level = "raid0" # FIXME: should be linear + base_level = "raid1" # FIXME: should be linear elif device_type == DEVICE_TYPE_BTRFS: base_level = "single" else: @@ -2322,7 +2322,7 @@ class CustomPartitioningSpoke(NormalSpoke, StorageChecker): # here I suppose we could alter the default based on disk count raid_level = "single" elif new_type == DEVICE_TYPE_MD: - raid_level = "raid0" + raid_level = "raid1" # lvm uses the RHS to set disk set. no foolish minds here. exists = self._current_selector and self._current_selector._device.exists -- cgit