diff options
author | Mike Fulbright <msf@redhat.com> | 2001-01-12 19:34:14 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2001-01-12 19:34:14 +0000 |
commit | e1e4d459287dbdc90b0de0957229b492d46b6305 (patch) | |
tree | 01b3a8bc56d5a8a894c761d8aeb147b3cca0cd7c /fstab.py | |
parent | bcca68131a29501f8312061d1389718e99aa1809 (diff) | |
download | anaconda-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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |