blob: abd93c76579568b2a7b719357fac92722d7fe822 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import personal_desktop
from rhpl.translate import N_
import os
class InstallClass(personal_desktop.InstallClass):
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)
|