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
|
return AnacondaBackend
|
||||||
|
|
||||||
def setDefaultPartitioning(self, storage, platform):
|
def setDefaultPartitioning(self, storage, platform):
|
||||||
autorequests = [PartSpec(mountpoint="/boot", fstype=storage.defaultBootFSType,
|
autorequests = [PartSpec(mountpoint="/", fstype=storage.defaultFSType,
|
||||||
size=512, maxSize=2*1024, grow=False, asVol=False),
|
|
||||||
PartSpec(mountpoint="/", fstype=storage.defaultFSType,
|
|
||||||
size=1024, grow=True, asVol=True, requiredSpace=50*1024)]
|
size=1024, grow=True, asVol=True, requiredSpace=50*1024)]
|
||||||
|
|
||||||
bootreq = platform.setDefaultPartitioning()
|
bootreq = platform.setDefaultPartitioning()
|
||||||
|
Loading…
Reference in New Issue
Block a user