summaryrefslogtreecommitdiffstats
path: root/kickstart.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2004-05-19 03:40:31 +0000
committerJeremy Katz <katzj@redhat.com>2004-05-19 03:40:31 +0000
commit4f4a93c00fe2e46c9901895d58ddcff1ad2e5736 (patch)
tree5b9273dd5297235d42a7f91fbfc38206fc5c4faf /kickstart.py
parent63c6b2666ff7fd9b064bb867225c12daae0af149 (diff)
downloadanaconda-4f4a93c00fe2e46c9901895d58ddcff1ad2e5736.tar.gz
anaconda-4f4a93c00fe2e46c9901895d58ddcff1ad2e5736.tar.xz
anaconda-4f4a93c00fe2e46c9901895d58ddcff1ad2e5736.zip
this should add raid6 support (#122360)
Diffstat (limited to 'kickstart.py')
-rw-r--r--kickstart.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/kickstart.py b/kickstart.py
index 0f24545c6..dab46684f 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -1082,6 +1082,8 @@ class KickstartBase(BaseInstallClass):
level = "RAID1"
elif raid.isRaid5(level):
level = "RAID5"
+ elif raid.isRaid6(level):
+ level = "RAID6"
if not level and preexist == 0:
raise KickstartValueError, "RAID Partition defined without RAID level"