diff options
author | Chris Lumens <clumens@redhat.com> | 2006-05-26 17:20:14 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2006-05-26 17:20:14 +0000 |
commit | 4a9f8bf457e5dc799671dfda4b0c6125917b714d (patch) | |
tree | 496c191f0c121888ced7304b6aba7db7fd2284b9 /packages.py | |
parent | df43bd85d5940ae14fbd7517787b2c46a955e447 (diff) | |
download | anaconda-4a9f8bf457e5dc799671dfda4b0c6125917b714d.tar.gz anaconda-4a9f8bf457e5dc799671dfda4b0c6125917b714d.tar.xz anaconda-4a9f8bf457e5dc799671dfda4b0c6125917b714d.zip |
Don't try to mount protected partitions again, as this will cause an error
since they are already mounted as the installation source.
Diffstat (limited to 'packages.py')
-rw-r--r-- | packages.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages.py b/packages.py index 6b0173601..d8469c600 100644 --- a/packages.py +++ b/packages.py @@ -143,7 +143,7 @@ def turnOnFilesystems(anaconda): anaconda.id.fsset.formatSwap(anaconda.rootPath) anaconda.id.fsset.turnOnSwap(anaconda.rootPath) anaconda.id.fsset.makeFilesystems (anaconda.rootPath) - anaconda.id.fsset.mountFilesystems (anaconda.rootPath) + anaconda.id.fsset.mountFilesystems (anaconda) def setupTimezone(anaconda): # we don't need this on an upgrade or going backwards |