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:
parent
35e7e4de35
commit
fd08adaf55
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user