summaryrefslogtreecommitdiffstats
path: root/textw
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-07-25 15:54:36 +0000
committerMike Fulbright <msf@redhat.com>2001-07-25 15:54:36 +0000
commit35a88e2e52d06b99b5e663156cbab4f27f61d14b (patch)
tree23fd764514037b82f2f004a2fc5d2a1b8f4158c5 /textw
parent5363c3cfda8e55d2b98fa304a7a1dffe08a3fec7 (diff)
downloadanaconda-35a88e2e52d06b99b5e663156cbab4f27f61d14b.tar.gz
anaconda-35a88e2e52d06b99b5e663156cbab4f27f61d14b.tar.xz
anaconda-35a88e2e52d06b99b5e663156cbab4f27f61d14b.zip
Set filesystem type based on user input or bad things happen
Diffstat (limited to 'textw')
-rw-r--r--textw/partition_text.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/textw/partition_text.py b/textw/partition_text.py
index 375bd6944..f25cc6dae 100644
--- a/textw/partition_text.py
+++ b/textw/partition_text.py
@@ -817,7 +817,8 @@ class PartitionWindow:
return
request = copy.copy(raidrequest)
- filesystem = fstype.current()
+
+ request.fstype = fstype.current()
if request.fstype.isMountable():
request.mountpoint = self.mount.value()
@@ -828,6 +829,7 @@ class PartitionWindow:
for drive in self.drivelist.getSelection():
id = self.partitions.getRequestByDeviceName(drive).uniqueID
raidmembers.append(id)
+
request.raidmembers = raidmembers
request.raidspares = int(spares.value())
request.raidlevel = raidtype.current()