summaryrefslogtreecommitdiffstats
path: root/installclasses/workstation.py
blob: f3d86c4dc68b867294daf66cbf2a07418cdbb755 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import personal_desktop
from rhpl.translate import N_
import os

class InstallClass(personal_desktop.InstallClass):
    showLoginChoice = 0
    name = N_("Workstation")
    pixmap = "workstation.png"
    description = N_("This option installs a graphical desktop "
		     "environment with tools for software "
		     "development and system administration. ")

    sortPriority = 2

    def setGroupSelection(self, comps):
        personal_desktop.InstallClass.setGroupSelection(self, comps)
        comps["Emacs"].select()
        comps["GNOME Software Development"].select()
	comps["X Software Development"].select()
        comps["Development Tools"].select()

    def __init__(self, expert):
	personal_desktop.InstallClass.__init__(self, expert)