summaryrefslogtreecommitdiffstats
path: root/textw
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-06-20 22:38:48 +0000
committerMike Fulbright <msf@redhat.com>2001-06-20 22:38:48 +0000
commitdf41d89bb6bf243dd355dfae69d32cd38725665f (patch)
treee2216eb9d42282c89892d84cd65c3141de854033 /textw
parenta4c0b8fd56b50048883f8aab70a7e66675641086 (diff)
downloadanaconda-df41d89bb6bf243dd355dfae69d32cd38725665f.tar.gz
anaconda-df41d89bb6bf243dd355dfae69d32cd38725665f.tar.xz
anaconda-df41d89bb6bf243dd355dfae69d32cd38725665f.zip
fix ups to RAID sanity checking
Diffstat (limited to 'textw')
-rw-r--r--textw/partition_text.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/textw/partition_text.py b/textw/partition_text.py
index af94948ea..623bc998c 100644
--- a/textw/partition_text.py
+++ b/textw/partition_text.py
@@ -403,7 +403,7 @@ class PartitionWindow:
request.primary = primonly
request.maxSize = maxsize
- err = sanityCheck(self.partitions, request)
+ err = sanityCheckPartitionRequest(self.partitions, request)
if err:
self.intf.messageWindow(_("Error With Request"),
"%s" % (err))
@@ -420,7 +420,7 @@ class PartitionWindow:
else:
origrequest.format = 0
- err = sanityCheck(self.partitions, origrequest)
+ err = sanityCheckPartitionRequest(self.partitions, origrequest)
if err:
self.intf.messageWindow(_("Error With Request"),
"%s" % (err))
@@ -502,7 +502,7 @@ class PartitionWindow:
else:
request.format = 0
- err = sanityCheck(self.partitions, request)
+ err = sanityCheckPartitionRequest(self.partitions, request)
if err:
self.intf.messageWindow(_("Error With Request"),
"%s" % (err))
@@ -636,6 +636,7 @@ class PartitionWindow:
else:
if not self.partitions.getRequestByMountPoint("/"):
continue
+ self.fsset.reset()
for request in self.partitions.requests:
# XXX improve sanity checking
if not request.fstype or (request.fstype.isMountable() and not request.mountpoint):