summaryrefslogtreecommitdiffstats
path: root/backend.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-03-24 17:20:38 -0400
committerChris Lumens <clumens@redhat.com>2008-03-24 17:20:38 -0400
commitb167a920ec87a1afc98589fb960142f8618faa74 (patch)
treedc822b8d501d5f87d3a893bc624d391fa047c32f /backend.py
parent0d8ef4c2b6a61fec6974ef4c1095d75f13d7ea67 (diff)
downloadanaconda-b167a920ec87a1afc98589fb960142f8618faa74.tar.gz
anaconda-b167a920ec87a1afc98589fb960142f8618faa74.tar.xz
anaconda-b167a920ec87a1afc98589fb960142f8618faa74.zip
Move /tmp/stage2.img to /mnt/sysimage to free up some memory (#438377).
Diffstat (limited to 'backend.py')
-rw-r--r--backend.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/backend.py b/backend.py
index 80c79f0f4..4c047a20e 100644
--- a/backend.py
+++ b/backend.py
@@ -189,9 +189,9 @@ class AnacondaBackend:
pass
def doRepoSetup(anaconda):
- anaconda.backend.doInitialSetup(anaconda)
- if anaconda.backend.doRepoSetup(anaconda) == DISPATCH_BACK:
+ if anaconda.backend.doInitialSetup(anaconda) == DISPATCH_BACK:
return DISPATCH_BACK
+ anaconda.backend.doRepoSetup(anaconda)
if anaconda.id.upgrade:
anaconda.backend.checkSupportedUpgrade(anaconda)
iutil.writeRpmPlatform(anaconda.rootPath)