diff options
author | Mike Fulbright <msf@redhat.com> | 2002-07-12 03:14:35 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2002-07-12 03:14:35 +0000 |
commit | 9bd2c613485b73068e1e6a34837c6723922c9933 (patch) | |
tree | dfab0955934b4c3a072a7ebfafb8709d3fd6c1cc /installclasses | |
parent | 3f7e6fbc27c88a18c32c3d7fddb1259a6e51bd89 (diff) | |
download | anaconda-9bd2c613485b73068e1e6a34837c6723922c9933.tar.gz anaconda-9bd2c613485b73068e1e6a34837c6723922c9933.tar.xz anaconda-9bd2c613485b73068e1e6a34837c6723922c9933.zip |
added developer workstation class
Diffstat (limited to 'installclasses')
-rw-r--r-- | installclasses/developer_workstation.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/installclasses/developer_workstation.py b/installclasses/developer_workstation.py new file mode 100644 index 000000000..d1740136a --- /dev/null +++ b/installclasses/developer_workstation.py @@ -0,0 +1,22 @@ +import workstation +from rhpl.translate import N_ +import os + +class InstallClass(workstation.InstallClass): + name = N_("Developer Workstation") + pixmap = "workstation.png" + description = N_("Select this " + "installation type to install a graphical desktop " + "environment which includes tools for software " + "development.") + + sortPriority = 2 + + def setGroupSelection(self, comps): + workstation.InstallClass.__init__(self, comps) + comps["Emacs"].select() + comps["GNOME Development"].select() + comps["X Development"].select() + + def __init__(self, expert): + workstation.InstallClass.__init__(self, expert) |