summaryrefslogtreecommitdiffstats
path: root/partitions.py
diff options
context:
space:
mode:
Diffstat (limited to 'partitions.py')
-rw-r--r--partitions.py7
1 files changed, 7 insertions, 0 deletions
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, "