Tighten restrictions on the type of disklabel on x86 and EFI boot disks.
> @@ -223,8 +230,10 @@ class EFI(Platform):
> disk = req.disk.format.partedDisk
>
> # Check that we've got a correct disk label.
> - if not disk.type in ["gpt", "msdos"]:
> - errors.append(_("%s must have a GPT or MSDOS disk label.") % req.disk.name)
> + labelType = self.diskLabelType(disk.device.type)
> + if disk.type != labelType:
> + errors.append(_("%s must have a %s disk label.")
> + % (req.disk.name, labelType.upper())
Missing a closing paren here. Fixed locally.
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list