[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[PATCH 1/3] Make /home autoreq grow a bit faster in relation to root.
- From: David Lehman <dlehman redhat com>
- To: anaconda-devel-list redhat com
- Subject: [PATCH 1/3] Make /home autoreq grow a bit faster in relation to root.
- Date: Fri, 24 Jun 2011 16:31:42 -0500
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.
---
pyanaconda/installclass.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/pyanaconda/installclass.py b/pyanaconda/installclass.py
index 440b97c..ab4794a 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()
--
1.7.3.4
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]