summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--installclasses/rhel.py4
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6744aa60c..275f10265 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,7 @@
* installclasses/rhel.py (InstallClass.__init__): Fix for changed
base repopath
+ (InstallClass.handleRegKey): Add more options
2006-07-26 David Cantrell <dcantrell@redhat.com>
diff --git a/installclasses/rhel.py b/installclasses/rhel.py
index ff822f2f7..0f680cb9e 100644
--- a/installclasses/rhel.py
+++ b/installclasses/rhel.py
@@ -58,8 +58,12 @@ class InstallClass(BaseInstallClass):
# if V is in the key, add Virtualization.
if key.find("C") != -1:
self.repopaths["cluster"] = "Cluster"
+ if key.find("S") != -1:
+ self.repopaths["cs"] = "ClusterStorage"
if key.find("V") != -1:
self.repopaths["virt"] = "VT"
+ if key.find("D") != -1:
+ self.repopaths["desktop"] = "Desktop"
self.regkey = key