summaryrefslogtreecommitdiffstats
path: root/partRequests.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2008-04-01 12:33:09 -0400
committerJeremy Katz <katzj@redhat.com>2008-04-01 12:33:09 -0400
commit9246a3c8b866942e253456aa2d8a86cfd2f75141 (patch)
tree181c891a8ffb4f81e6857b174a312f078af118b6 /partRequests.py
parentea0bc6de39f1fa722e0cd0cf75ae43c1ea8a7b97 (diff)
downloadanaconda-9246a3c8b866942e253456aa2d8a86cfd2f75141.tar.gz
anaconda-9246a3c8b866942e253456aa2d8a86cfd2f75141.tar.xz
anaconda-9246a3c8b866942e253456aa2d8a86cfd2f75141.zip
Require live installs to be to an ext2 or ext3 filesystem (#397871)
Diffstat (limited to 'partRequests.py')
-rw-r--r--partRequests.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/partRequests.py b/partRequests.py
index 438ba4e29..0b77e4ca0 100644
--- a/partRequests.py
+++ b/partRequests.py
@@ -272,6 +272,10 @@ class RequestSpec:
if flags.livecdInstall and self.mountpoint == "/" and not self.format:
return _("The mount point %s must be formatted during live CD "
"installs.") % self.mountpoint
+ if flags.livecdInstall and self.mountpoint == "/" and self.fstype.getName() not in ["ext3", "ext2"]:
+ return _("The mount point %s must be formatted during live CD "
+ "installs.") % self.mountpoint
+
if self.fstype.isMountable():
if self.mountpoint in mustbeonroot: