summaryrefslogtreecommitdiffstats
path: root/partitioning.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2001-06-20 23:29:39 +0000
committerJeremy Katz <katzj@redhat.com>2001-06-20 23:29:39 +0000
commit724caa31904cab3c140507aba9a04d63e8f09d3f (patch)
tree5fdde961c28aaed9915e683cbf45e5d7d075aa21 /partitioning.py
parent61aeb630cd525ad92d4ee6f5b41291d2bf023225 (diff)
downloadanaconda-724caa31904cab3c140507aba9a04d63e8f09d3f.tar.gz
anaconda-724caa31904cab3c140507aba9a04d63e8f09d3f.tar.xz
anaconda-724caa31904cab3c140507aba9a04d63e8f09d3f.zip
if linuxnativefs, we don't need to do the rest of the checks
Diffstat (limited to 'partitioning.py')
-rw-r--r--partitioning.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/partitioning.py b/partitioning.py
index 2f2f45561..940015287 100644
--- a/partitioning.py
+++ b/partitioning.py
@@ -280,7 +280,7 @@ def doMountPointLinuxFSChecks(newrequest):
return _("This mount point is invalid. This directory must "
"be on the / filesystem.")
- if newrequest.fstype.getName() == "swap":
+ elif newrequest.fstype.getName() == "swap":
if newrequest.type == REQUEST_RAID:
swapsize = get_raid_device_size(newrequest)
else: