From 4a9f8bf457e5dc799671dfda4b0c6125917b714d Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Fri, 26 May 2006 17:20:14 +0000 Subject: Don't try to mount protected partitions again, as this will cause an error since they are already mounted as the installation source. --- packages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages.py') 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 -- cgit