summaryrefslogtreecommitdiffstats
path: root/autopart.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2001-07-23 04:45:11 +0000
committerJeremy Katz <katzj@redhat.com>2001-07-23 04:45:11 +0000
commit66eb13014f6feff6f974a33feed3be245539673b (patch)
treef4bcba00d0d267598c953006bf97721dfc7cd164 /autopart.py
parentc75df9d95e5d4e8532d72c444f5bb00da2c083ab (diff)
downloadanaconda-66eb13014f6feff6f974a33feed3be245539673b.tar.gz
anaconda-66eb13014f6feff6f974a33feed3be245539673b.tar.xz
anaconda-66eb13014f6feff6f974a33feed3be245539673b.zip
sanity checks for sizes need to actually look at the partition since
we could be a growable partition. so, now we need the diskset here too
Diffstat (limited to 'autopart.py')
-rw-r--r--autopart.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/autopart.py b/autopart.py
index 2d9494a1f..ad2e4d575 100644
--- a/autopart.py
+++ b/autopart.py
@@ -856,7 +856,7 @@ def doAutoPartition(dir, diskset, partitions, intf, instClass):
# sanity checks for the auto partitioning requests; mostly only useful
# for kickstart as our installclass defaults SHOULD be sane
- (errors, warnings) = sanityCheckAllRequests(partitions, baseChecks = 1)
+ (errors, warnings) = sanityCheckAllRequests(partitions, diskset, 1)
if warnings:
for warning in warnings:
log("WARNING: %s" % (warning))