summaryrefslogtreecommitdiffstats
path: root/dispatch.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-09-03 10:30:02 -0400
committerChris Lumens <clumens@redhat.com>2008-09-03 10:30:02 -0400
commit9ea609e1364c57957237e5a5ed7ed8ded8357ad8 (patch)
tree765eaf6af5413943959000daafc0f66aec01d924 /dispatch.py
parentb803ca653ac6ccc6b0eac03055696b43901cebff (diff)
downloadanaconda-9ea609e1364c57957237e5a5ed7ed8ded8357ad8.tar.gz
anaconda-9ea609e1364c57957237e5a5ed7ed8ded8357ad8.tar.xz
anaconda-9ea609e1364c57957237e5a5ed7ed8ded8357ad8.zip
Do repo setup and sack setup as separate steps.
This fixes a bug where yum wants all the repos set up before it does sack setup that only appears with the blacklist/whiteout plugins enabled. It also brings us more in line with how yum really works - where the two are completely separate steps. backend.doRepoSetup has also been renamed to backend.doBackendSetup to sound a little less yum-specific.
Diffstat (limited to 'dispatch.py')
-rw-r--r--dispatch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/dispatch.py b/dispatch.py
index 2fe7b85d2..77eb90ada 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -44,7 +44,7 @@ from upgrade import findRootParts, queryUpgradeContinue
from installmethod import doMethodComplete
from kickstart import runPostScripts
-from backend import doPostSelection, doRepoSetup, doBasePackageSelect
+from backend import doPostSelection, doBackendSetup, doBasePackageSelect
from backend import doPreInstall, doPostInstall, doInstall
from backend import writeConfiguration
@@ -93,7 +93,7 @@ installSteps = [
("upgbootloader", ),
("bootloadersetup", bootloaderSetupChoices, ),
("bootloader", ),
- ("reposetup", doRepoSetup, ),
+ ("reposetup", doBackendSetup, ),
("basepkgsel", doBasePackageSelect, ),
("tasksel", ),
("group-selection", ),