diff options
author | Erik Troan <ewt@redhat.com> | 2001-06-20 01:46:34 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2001-06-20 01:46:34 +0000 |
commit | d2b85ad932ca315f00ca72527e87ea9a059f74e6 (patch) | |
tree | 3bc31ce8d092457372b4cd1b1bad60b45dad0b32 /installclasses/laptop.py | |
parent | 1a690b55258ae286bee27e4d1db22c527862837b (diff) | |
download | anaconda-d2b85ad932ca315f00ca72527e87ea9a059f74e6.tar.gz anaconda-d2b85ad932ca315f00ca72527e87ea9a059f74e6.tar.xz anaconda-d2b85ad932ca315f00ca72527e87ea9a059f74e6.zip |
merge from (now defunct) dispatch branch
Diffstat (limited to 'installclasses/laptop.py')
-rw-r--r-- | installclasses/laptop.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/installclasses/laptop.py b/installclasses/laptop.py index 9ff1c428b..4074f86ea 100644 --- a/installclasses/laptop.py +++ b/installclasses/laptop.py @@ -10,10 +10,12 @@ class InstallClass(workstation.InstallClass): sortPriority = 5000 arch = 'i386' + def setGroupSelection(self, comps): + workstation.InstallClass.__init__(self, comps) + comps["Laptop Support"].select() + if pcmcia.pcicType(): default = 1 def __init__(self, expert): workstation.InstallClass.__init__(self, expert) - # XXX better interface for manipulating this stuff? - self.groups.append("Laptop Support") |