diff options
author | Jeremy Katz <katzj@redhat.com> | 2004-05-11 22:20:04 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2004-05-11 22:20:04 +0000 |
commit | d3730ca46577bfb35e3f30eb44f7e1ba18c4f9bb (patch) | |
tree | 2aff48ff11cc3cfe6e715050d87771faa3493ce6 /partitions.py | |
parent | 7e7a8563c4d120c8e72b2bddcfac2d2c9e0f6fdf (diff) | |
download | anaconda-d3730ca46577bfb35e3f30eb44f7e1ba18c4f9bb.tar.gz anaconda-d3730ca46577bfb35e3f30eb44f7e1ba18c4f9bb.tar.xz anaconda-d3730ca46577bfb35e3f30eb44f7e1ba18c4f9bb.zip |
bump down min sizes to avoid problems with cylinders causing rounding oddness
Diffstat (limited to 'partitions.py')
-rw-r--r-- | partitions.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/partitions.py b/partitions.py index 8533b0eaf..e881bcf54 100644 --- a/partitions.py +++ b/partitions.py @@ -792,9 +792,9 @@ class Partitions: if bestreq is not None: if (iutil.getPPCMachine() == "pSeries"): - minsize = 4 + minsize = 2 else: - minsize = 16 + minsize = 12 if bestreq.getActualSize(self, diskset) < minsize: warnings.append(_("Your %s partition is less than %s " "megabytes which is lower than " |