summaryrefslogtreecommitdiffstats
path: root/kickstart.py
diff options
context:
space:
mode:
Diffstat (limited to 'kickstart.py')
-rw-r--r--kickstart.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/kickstart.py b/kickstart.py
index 24de479f0..c18b3fd3a 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -7,6 +7,7 @@ from autopart import *
from fsset import *
from flags import flags
import sys
+import raid
import string
class Script:
@@ -647,11 +648,11 @@ class KickstartBase(BaseInstallClass):
raidmems.append(self.ksRaidMapping[member])
# XXX this shouldn't have to happen =\
- if isRaid0(level):
+ if raid.isRaid0(level):
level = "RAID0"
- elif isRaid1(level):
+ elif raid.isRaid1(level):
level = "RAID1"
- elif isRaid5(level):
+ elif raid.isRaid5(level):
level = "RAID5"
if not level: