summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-10-06 20:05:28 +0000
committerMatt Wilson <msw@redhat.com>1999-10-06 20:05:28 +0000
commit5989ab0ba62b4b0e78b23e3237aab7e3fa1fb97c (patch)
treeb1421cca8d2f08b9a9366ad6ad95a74b49e80046
parentd4ccc7f74fa0498619d938ed067ebba65221d20d (diff)
downloadanaconda-5989ab0ba62b4b0e78b23e3237aab7e3fa1fb97c.tar.gz
anaconda-5989ab0ba62b4b0e78b23e3237aab7e3fa1fb97c.tar.xz
anaconda-5989ab0ba62b4b0e78b23e3237aab7e3fa1fb97c.zip
fix for raid
-rw-r--r--iw/rootpartition.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/iw/rootpartition.py b/iw/rootpartition.py
index 3ce75fb80..3240c5ec3 100644
--- a/iw/rootpartition.py
+++ b/iw/rootpartition.py
@@ -90,13 +90,13 @@ class PartitionWindow (InstallWindow):
if not self.checkSwap ():
return PartitionWindow
- for (mount, device, type, raidType, other) in raid:
- self.todo.addMount(device, mount, type)
-
- if mount == "/":
- rootPartition = device
- elif mount == "/boot":
- bootPartition = device
+ for (mount, device, fstype, raidType, start, size, makeup) in raid:
+ self.todo.addMount(device, mount, fstype)
+
+ if mount == "/":
+ rootPartition = device
+ elif mount == "/boot":
+ bootPartition = device
if (bootPartition):
liloBoot = bootPartition