Ack. On 05/29/2010 12:25 AM, David Lehman wrote:
If blkid detected non-disklabel formatting on a device, don't even look for a disklabel on that device. After all, blkid is supposed to be the final word on block device formatting detection. --- storage/devicetree.py | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/storage/devicetree.py b/storage/devicetree.py index ec1479e..67c8f65 100644 --- a/storage/devicetree.py +++ b/storage/devicetree.py @@ -1311,6 +1311,10 @@ class DeviceTree(object): def handleUdevDiskLabelFormat(self, info, device): log_method_call(self, device=device.name) + if udev_device_get_format(info): + log.debug("device %s does not contain a disklabel" % device.name) + return + if device.partitioned: # this device is already set up log.debug("disklabel format on %s already set up" % device.name)
_______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list