diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-24 23:39:14 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-24 23:39:14 +0000 |
commit | 8f325d2da41ebf444eaecadabc0e560b89c8649d (patch) | |
tree | 2f9cc52906b1d3b77924217283c66b5605d1bf49 | |
parent | f23baa3e5fc78a59e45dbf4d744c63b924f7b7d7 (diff) | |
download | anaconda-8f325d2da41ebf444eaecadabc0e560b89c8649d.tar.gz anaconda-8f325d2da41ebf444eaecadabc0e560b89c8649d.tar.xz anaconda-8f325d2da41ebf444eaecadabc0e560b89c8649d.zip |
fixed some types
-rw-r--r-- | todo.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1137,10 +1137,12 @@ class ToDo: todo.timezone = instClass.getTimezoneInfo() todo.bootdisk = todo.instClass.getMakeBootdisk() todo.zeroMbr = todo.instClass.zeroMbr - todo.mounts = todo.instClass.fstab (where, linear, append) = todo.instClass.getLiloInformation() todo.liloDevice = where + for (mntpoint, (dev, fstype, reformat)) in todo.instClass.fstab: + todo.addMount(dev, mntpoint, fstype, reformat) + if todo.ddruid: todo.ddruid = None todo.mounts = {} |