--- pyanaconda/ui/gui/spokes/software.py | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/pyanaconda/ui/gui/spokes/software.py b/pyanaconda/ui/gui/spokes/software.py index 4299de6..adbcea3 100644 --- a/pyanaconda/ui/gui/spokes/software.py +++ b/pyanaconda/ui/gui/spokes/software.py @@ -61,6 +61,17 @@ class SoftwareSelectionSpoke(NormalSpoke): for group in self.selectedGroups: self.payload.selectGroup(group) + # select some stuff people will want with their desktop + if row[2] != "base": + groups = ['base-x', 'fonts']#, 'editors', 'graphical-internet', + #'hardware-support', 'input-methods', 'java', 'office', + #'printing', 'sound-and-video'] + else: + groups = ['text-internet'] + + for group in [g for g in groups if g not in self.excludedGroups]: + self.payload.selectGroup(group) + @property def completed(self): return self._get_selected_desktop() is not None -- 1.7.7.6 _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list