summaryrefslogtreecommitdiffstats
path: root/pyanaconda/constants.py
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2012-04-19 14:37:48 -0500
committerDavid Lehman <dlehman@redhat.com>2012-04-19 16:23:55 -0500
commitef8eb888fbc51db5831f37512cd732c8054cdcb0 (patch)
tree5d3ffbf2113cc67fb194c96365c3bf365202b861 /pyanaconda/constants.py
parentdf0f976dc24302ae06c4c5edf618b2735b7b943d (diff)
downloadanaconda-ef8eb888fbc51db5831f37512cd732c8054cdcb0.tar.gz
anaconda-ef8eb888fbc51db5831f37512cd732c8054cdcb0.tar.xz
anaconda-ef8eb888fbc51db5831f37512cd732c8054cdcb0.zip
Generate an installer yum config for package install.
We have to switch yum over from the configuration-time installroot to the install-time installroot. This, of course, is not as simple as changing an attribute of the YumBase instance. Instead, it requires that we create a new instance of YumBase with the new configuration. Instead of calling updateBaseRepo again to start from scratch and try to establish an install-time repo set like we do during configuration, write out the configuration we want for install time based on what was configured and then tell the install-time YumBase to use it.
Diffstat (limited to 'pyanaconda/constants.py')
-rw-r--r--pyanaconda/constants.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyanaconda/constants.py b/pyanaconda/constants.py
index 6757a8700..822427bf2 100644
--- a/pyanaconda/constants.py
+++ b/pyanaconda/constants.py
@@ -74,4 +74,4 @@ ROOT_PATH = "/mnt/sysimage"
MOUNT_DIR = "/mnt/install"
ISO_DIR = MOUNT_DIR + "/isodir"
INSTALL_TREE = MOUNT_DIR + "/source"
-BASE_REPO_NAME = "Installation Repo"
+BASE_REPO_NAME = "anaconda"