diff options
author | Matt Wilson <msw@redhat.com> | 2000-08-04 20:55:16 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-08-04 20:55:16 +0000 |
commit | ac2f5cef739da0ca490721df6478a0dcc98d9685 (patch) | |
tree | 9ba96cbd27411b1e9a994dc5e8433dd41f839e0d /installclass.py | |
parent | 76f81e904b79a61cd3a0e68e7466dd1514111b94 (diff) | |
download | anaconda-ac2f5cef739da0ca490721df6478a0dcc98d9685.tar.gz anaconda-ac2f5cef739da0ca490721df6478a0dcc98d9685.tar.xz anaconda-ac2f5cef739da0ca490721df6478a0dcc98d9685.zip |
accessors
Diffstat (limited to 'installclass.py')
-rw-r--r-- | installclass.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/installclass.py b/installclass.py index 84797bc75..d7fc4ea43 100644 --- a/installclass.py +++ b/installclass.py @@ -164,6 +164,14 @@ class BaseInstallClass: def getGroups(self): return self.groups + # Groups is a list of group names -- the full list can be found in + # ths comps file for each release + def setOptionalGroups(self, groups): + self.showgroups = groups + + def getOptionalGroups(self): + return self.showgroups + # This is a list of packages -- it is combined with the group list def setPackages(self, packages): hash = {} |