summaryrefslogtreecommitdiffstats
path: root/fstab.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-01-12 19:34:14 +0000
committerMike Fulbright <msf@redhat.com>2001-01-12 19:34:14 +0000
commite1e4d459287dbdc90b0de0957229b492d46b6305 (patch)
tree01b3a8bc56d5a8a894c761d8aeb147b3cca0cd7c /fstab.py
parentbcca68131a29501f8312061d1389718e99aa1809 (diff)
downloadanaconda-e1e4d459287dbdc90b0de0957229b492d46b6305.tar.gz
anaconda-e1e4d459287dbdc90b0de0957229b492d46b6305.tar.xz
anaconda-e1e4d459287dbdc90b0de0957229b492d46b6305.zip
added boolean to partitionList() to tell us if partition is preexisting or not
Diffstat (limited to 'fstab.py')
-rw-r--r--fstab.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fstab.py b/fstab.py
index 93b6f7bff..6328775e5 100644
--- a/fstab.py
+++ b/fstab.py
@@ -175,7 +175,7 @@ class Fstab:
boothd = self.getMbrDevice()
(drives, raid) = self.partitionList()
- for (dev, devName, type, start, size, maxcyl) in drives:
+ for (dev, devName, type, start, size, maxcyl, preexist) in drives:
if dev == bootpart:
log ("maxcyl of %s is %d" % (dev, maxcyl))
return maxcyl