summaryrefslogtreecommitdiffstats
path: root/rescue.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2006-05-26 17:20:14 +0000
committerChris Lumens <clumens@redhat.com>2006-05-26 17:20:14 +0000
commit4a9f8bf457e5dc799671dfda4b0c6125917b714d (patch)
tree496c191f0c121888ced7304b6aba7db7fd2284b9 /rescue.py
parentdf43bd85d5940ae14fbd7517787b2c46a955e447 (diff)
downloadanaconda-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 'rescue.py')
-rw-r--r--rescue.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/rescue.py b/rescue.py
index fe29df013..620f87fa7 100644
--- a/rescue.py
+++ b/rescue.py
@@ -332,8 +332,7 @@ def runRescue(anaconda):
# only pass first two parts of tuple for root, since third
# element is a comment we dont want
- rc = upgrade.mountRootPartition(anaconda.intf, root[:2],
- fs, anaconda.rootPath,
+ rc = upgrade.mountRootPartition(anaconda, root[:2], fs,
allowDirty = 1, warnDirty = 1,
readOnly = readOnly)