diff options
author | Jeremy Katz <katzj@redhat.com> | 2009-01-19 13:08:52 -0500 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2009-01-19 13:38:05 -0500 |
commit | 7033602601e116d5d4282d1d339aaad2eea26796 (patch) | |
tree | 48596b244d5d09df37a458ee7d2cbeb60dec3318 | |
parent | 96af392e3d03d765977ada14c2c18513a7de1e4f (diff) | |
download | anaconda-7033602601e116d5d4282d1d339aaad2eea26796.tar.gz anaconda-7033602601e116d5d4282d1d339aaad2eea26796.tar.xz anaconda-7033602601e116d5d4282d1d339aaad2eea26796.zip |
Allow live installs to use ext4 as root and make the error message clearer
-rw-r--r-- | partRequests.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/partRequests.py b/partRequests.py index 57d89cde6..891afdf1f 100644 --- a/partRequests.py +++ b/partRequests.py @@ -274,10 +274,9 @@ 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 flags.livecdInstall and self.mountpoint == "/" and self.fstype.getName() not in ["ext4", "ext3", "ext2"]: + return _("The mount point %s must be formatted to match the live " + "rootfs during live CD installs.") % self.mountpoint if self.fstype.isMountable(): if self.mountpoint in mustbeonroot: |