[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: [PATCH] Enforce limits on the number of partitions on a disk.
- From: Jeremy Katz <katzj redhat com>
- To: Discussion of Development and Customization of the Red Hat Linux Installer <anaconda-devel-list redhat com>
- Subject: Re: [PATCH] Enforce limits on the number of partitions on a disk.
- Date: Fri, 29 May 2009 11:13:08 -0400
On Thursday, May 28 2009, David Lehman said:
> @@ -120,6 +122,31 @@ def getLUKSPassphrase(intf, device, globalPassphrase):
>
> return (passphrase, isglobal)
>
> +def handleDiskMaxPartitionsExceeded(intf, device):
> + """ Ask user how to handle disk with too many partitions.
> +
> + Choices are to ignore the disk or to exit the installer.
> +
> + A return value of True indicates the user wants to continue with
> + installation without using this device.
> + """
> + maxPartitionCount = device.partedDisk.maxPrimaryPartitionCount + \
> + device.partedDisk.getMaxLogicalPartitions()
> + str = _("The drive %s has more than %d partitions on it,"
> + "which is the maximum number of partitions for disk of "
> + "this type. You will not be able to make changes to the "
> + "partitioning of this disk or use any partitions beyond "
> + "%s%d in %s") % (device.path, maxPartitionCount, device.name,
> + maxPartitionCount, productName)
This isn't entirely accurate -- if you're ignoring the disk, then we
can't mount it either, can we?
> @@ -1114,6 +1141,16 @@ class DeviceTree(object):
> self.addIgnoredDisk(name)
> return
>
> + # make sure the disk does not have more partitions than are supported
> + if device.mediaPresent:
> + maxPartitionCount = device.partedDisk.maxPrimaryPartitionCount + \
> + device.partedDisk.getMaxLogicalPartitions()
> +
> + if len(device.partedDisk.partitions) > maxPartitionCount and \
> + handleDiskMaxPartitionsExceeded(self.intf, device):
> + self.addIgnoredDisk(name)
> + return
Does disk.partitions still contain the weird metadata partitions (which
would then throw off this count)?
Jeremy
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]