blob: 54ddcf4ce37a8db13efe487bc46d90c5fe4e4908 (
plain)
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
|
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_("Custom")
pixmap = "custom.png"
showMinimal = 1
showLoginChoice = 1
description = N_("Select this installation type to gain complete "
"control over the installation process, including "
"software package selection and authentication "
"preferences.")
sortPriority = 10000
def setInstallData(self, id):
BaseInstallClass.setInstallData(self, id)
BaseInstallClass.setDefaultPartitioning(self, id.partitions,
CLEARPART_TYPE_LINUX)
def __init__(self, expert):
BaseInstallClass.__init__(self, expert)
|