summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--anaconda.spec5
-rw-r--r--installclasses/rhel.py2
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 2bb23ddd6..be92737b4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2006-07-27 Jeremy Katz <katzj@redhat.com>
+ * installclasses/rhel.py (InstallClass.__init__): base repopath
+ didn't really change
+
* anaconda.spec: Bump version.
2006-07-27 Paul Nasrat <pnasrat@redhat.com>
diff --git a/anaconda.spec b/anaconda.spec
index 3391bebfd..64298a40f 100644
--- a/anaconda.spec
+++ b/anaconda.spec
@@ -1,5 +1,5 @@
Name: anaconda
-Version: 11.1.0.67
+Version: 11.1.0.68
Release: 1
License: GPL
Summary: Graphical system installer
@@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT
/sbin/chkconfig --del reconfig >/dev/null 2>&1 || :
%changelog
+* Thu Jul 27 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.68-1
+- And another fix for the RHEL installclass
+
* Thu Jul 27 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.67-1
- FTP/HTTP ipv6 fixes (dcantrel)
- Better prepboot handling (pnasrat)
diff --git a/installclasses/rhel.py b/installclasses/rhel.py
index 0f680cb9e..04ab4b314 100644
--- a/installclasses/rhel.py
+++ b/installclasses/rhel.py
@@ -70,5 +70,5 @@ class InstallClass(BaseInstallClass):
def __init__(self, expert):
BaseInstallClass.__init__(self, expert)
- self.repopaths = { "base": "" }
+ self.repopaths = { "base": "%s" %(productPath,) }
self.regkey = None