anaconda: lower disk requirements

Base installed system, including one template uses about 8GB. So make it
possible to install the system with root partition about that size. This
is probably bad idea, but the limit here is hard - it isn't possible to
force installation on smaller partition.
This commit is contained in:
Marek Marczykowski-Górecki 2015-03-23 19:58:55 +01:00 committed by Jon Griffiths
parent 536868d1d3
commit 48aa0e06c9

View File

@ -67,7 +67,7 @@ class InstallClass(BaseInstallClass):
for autoreq in storage.autoPartitionRequests:
if autoreq.mountpoint == "/":
autoreq.maxSize=None
autoreq.requiredSpace=24*1024
autoreq.requiredSpace=10*1024
if autoreq.mountpoint == "/home":
storage.autoPartitionRequests.remove(autoreq)