summaryrefslogtreecommitdiffstats
path: root/pyanaconda/ui/gui/spokes/custom.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2013-01-22 12:43:08 -0500
committerChris Lumens <clumens@redhat.com>2013-01-23 09:47:16 -0500
commit390741637d9a2d19155434784ab32924cbc039f1 (patch)
tree4d501b91154e94019a36958e3325529b290d1349 /pyanaconda/ui/gui/spokes/custom.py
parent2d60bf1a8cbe49bdd6a538f8d19229717c49316c (diff)
downloadanaconda-390741637d9a2d19155434784ab32924cbc039f1.tar.gz
anaconda-390741637d9a2d19155434784ab32924cbc039f1.tar.xz
anaconda-390741637d9a2d19155434784ab32924cbc039f1.zip
Default to mirrored RAID instead of striped (#888867).
Diffstat (limited to 'pyanaconda/ui/gui/spokes/custom.py')
-rw-r--r--pyanaconda/ui/gui/spokes/custom.py4
1 files changed, 2 insertions, 2 deletions
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