1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
from installclass import BaseInstallClass
from rhpl.translate import N_, _
from constants import *
import os
import iutil
# custom installs are easy :-)
class InstallClass(BaseInstallClass):
name = N_("Red Hat Enterprise Linux ES")
pixmap = "server.png"
description = N_("Red Hat Enterprise Linux ES")
sortPriority = 100
showLoginChoice = 1
hidden = 1
pkgstext = _("\tDesktop shell (GNOME)\n"
"\tAdministration Tools\n"
"\tServer Configuration Tools\n"
"\tWeb Server\n"
"\tWindows File Server (SMB)\n")
def setSteps(self, dispatch):
BaseInstallClass.setSteps(self, dispatch);
dispatch.skipStep("desktopchoice", skip = 0)
dispatch.skipStep("package-selection", skip = 1)
def setGroupSelection(self, anaconda):
BaseInstallClass.__init__(self, anaconda.backend)
anaconda.backend.unselectAll()
anaconda.backend.selectGroup("server", asMeta = 1)
anaconda.backend.selectGroup("base-x")
anaconda.backend.selectGroup("gnome-desktop")
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)
|