diff options
author | Jeremy Katz <katzj@redhat.com> | 2006-07-27 15:50:05 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2006-07-27 15:50:05 +0000 |
commit | ec3170ebba830920b4dbfe1c759ace18656e490a (patch) | |
tree | 08d7b47a3760c9a990df471ec9bab0a95a9a4a18 | |
parent | 5ffdbe527a6919d470d6c0fbc3334ad6429d91a1 (diff) | |
download | anaconda-ec3170ebba830920b4dbfe1c759ace18656e490a.tar.gz anaconda-ec3170ebba830920b4dbfe1c759ace18656e490a.tar.xz anaconda-ec3170ebba830920b4dbfe1c759ace18656e490a.zip |
2006-07-27 Jeremy Katz <katzj@redhat.com>
* installclasses/rhel.py (InstallClass.__init__): Fix for changed
base repopath
(InstallClass.handleRegKey): Add more options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | installclasses/rhel.py | 4 |
2 files changed, 5 insertions, 0 deletions
@@ -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 |