summaryrefslogtreecommitdiffstats
path: root/installclasses/server.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2007-01-18 15:27:12 +0000
committerJeremy Katz <katzj@redhat.com>2007-01-18 15:27:12 +0000
commitf97016cfc982494ab2362bd0e530e2427622726f (patch)
tree6fcec0cb91b283dbcd08a053c03e0b906b8977c5 /installclasses/server.py
parent87c25642b55cc7be581c06931a7fc739628a36f8 (diff)
downloadanaconda-f97016cfc982494ab2362bd0e530e2427622726f.tar.gz
anaconda-f97016cfc982494ab2362bd0e530e2427622726f.tar.xz
anaconda-f97016cfc982494ab2362bd0e530e2427622726f.zip
2007-01-18 Jeremy Katz <katzj@redhat.com>
* installclasses/custom.py: Remove obsolete file * installclasses/personal_desktop.py: Likewise. * installclasses/server.py: Likewise. * installclasses/workstation.py: Likewise.
Diffstat (limited to 'installclasses/server.py')
-rw-r--r--installclasses/server.py39
1 files changed, 0 insertions, 39 deletions
diff --git a/installclasses/server.py b/installclasses/server.py
deleted file mode 100644
index 819357a59..000000000
--- a/installclasses/server.py
+++ /dev/null
@@ -1,39 +0,0 @@
-from installclass import BaseInstallClass
-from rhpl.translate import *
-from constants import *
-import os
-import iutil
-
-class InstallClass(BaseInstallClass):
-
- # name has underscore used for mnemonics, strip if you dont need it
- id = "server"
- name = N_("_Server")
- pixmap = "server.png"
- description = N_("Select this installation type if you would like to "
- "set up file sharing, print sharing, and Web services. "
- "Additional services can also be enabled, and you "
- "can choose whether or not to install a graphical "
- "environment.")
-
- sortPriority = 10
- showLoginChoice = 1
- hidden = 1
-
- def setSteps(self, dispatch):
- BaseInstallClass.setSteps(self, dispatch);
-
- def setGroupSelection(self, anaconda):
- BaseInstallClass.__init__(self, anaconda.backend)
-
- anaconda.backend.unselectAll()
- anaconda.backend.selectGroup("server", asMeta = 1)
- anaconda.backend.selectGroup("compat-arch-support", asMeta = 1, missingOk = 1)
-
- def setInstallData(self, anaconda):
- BaseInstallClass.setInstallData(self, anaconda)
- BaseInstallClass.setDefaultPartitioning(self, anaconda.id.partitions,
- CLEARPART_TYPE_ALL)
-
- def __init__(self, expert):
- BaseInstallClass.__init__(self, expert)