Do not create two /boot (#184)

/boot will be automatically added to partitions list when required (in this
case: when / is on LVM). No need for explicit adding it.
This commit is contained in:
Marek Marczykowski 2011-06-23 17:12:14 +02:00
parent 35e7e4de35
commit fd08adaf55

View File

@ -176,9 +176,7 @@ class BaseInstallClass(object):
return AnacondaBackend
def setDefaultPartitioning(self, storage, platform):
autorequests = [PartSpec(mountpoint="/boot", fstype=storage.defaultBootFSType,
size=512, maxSize=2*1024, grow=False, asVol=False),
PartSpec(mountpoint="/", fstype=storage.defaultFSType,
autorequests = [PartSpec(mountpoint="/", fstype=storage.defaultFSType,
size=1024, grow=True, asVol=True, requiredSpace=50*1024)]
bootreq = platform.setDefaultPartitioning()