summaryrefslogtreecommitdiffstats
path: root/pyanaconda/installclass.py
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2011-06-24 15:54:48 -0500
committerDavid Lehman <dlehman@redhat.com>2011-06-27 16:24:07 -0500
commitb0396860c439e876bbde5112dc500ead0875ac09 (patch)
tree92ebfae4c0a0d3622a13d3dbe9ac18a119f5ca1d /pyanaconda/installclass.py
parent26f19f416264acc4102db1617354f628f8e1910a (diff)
downloadanaconda-b0396860c439e876bbde5112dc500ead0875ac09.tar.gz
anaconda-b0396860c439e876bbde5112dc500ead0875ac09.tar.xz
anaconda-b0396860c439e876bbde5112dc500ead0875ac09.zip
Make /home autoreq grow a bit faster in relation to root.
Previously, with a 60G disk you'd end up with something like 50G/7G root/home split. With this change it's more like 39G/19G, which is probably more what people would expect.
Diffstat (limited to 'pyanaconda/installclass.py')
-rw-r--r--pyanaconda/installclass.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyanaconda/installclass.py b/pyanaconda/installclass.py
index 630ef7499..9ac927383 100644
--- a/pyanaconda/installclass.py
+++ b/pyanaconda/installclass.py
@@ -177,7 +177,7 @@ class BaseInstallClass(object):
size=1024, maxSize=50*1024, grow=True,
asVol=True, encrypted=True),
PartSpec(mountpoint="/home", fstype=storage.defaultFSType,
- size=100, grow=True, requiredSpace=50*1024,
+ size=500, grow=True, requiredSpace=50*1024,
asVol=True, encrypted=True)]
bootreq = platform.setDefaultPartitioning()