From 3f12e85f2b72f2f3a59b2b1672e46eb32441ab94 Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Fri, 30 Jun 2006 16:22:27 +0000 Subject: 2006-06-30 Jeremy Katz * partitions.py (Partitions.sanityCheckAllRequests): Don't allow /boot on gfs2 --- partitions.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'partitions.py') diff --git a/partitions.py b/partitions.py index 618fe52ac..9e8a1e241 100644 --- a/partitions.py +++ b/partitions.py @@ -963,6 +963,13 @@ class Partitions: errors.append("Bootable partitions cannot be on an XFS " "filesystem.") + # no gfs support in grub + if (bootreq and bootreq.fstype and + bootreq.fstype.getName() == "gfs2"): + errors.append("Bootable partitions cannot be on a GFS2 " + "filesystem.") + + if foundSwap == 0: warnings.append(_("You have not specified a swap partition. " "Although not strictly required in all cases, " -- cgit