summaryrefslogtreecommitdiffstats
path: root/installclasses
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2002-12-03 19:22:42 +0000
committerMike Fulbright <msf@redhat.com>2002-12-03 19:22:42 +0000
commit5e50c748f25f0cdf2f1f1307ee2ed6357284aff4 (patch)
tree8c2113e825a073f67ba48f65da956ea68854592a /installclasses
parentbcb16098cd35a660040adeb722be6fa084e596dd (diff)
downloadanaconda-5e50c748f25f0cdf2f1f1307ee2ed6357284aff4.tar.gz
anaconda-5e50c748f25f0cdf2f1f1307ee2ed6357284aff4.tar.xz
anaconda-5e50c748f25f0cdf2f1f1307ee2ed6357284aff4.zip
add concept of whether user gets to choose default run level
Diffstat (limited to 'installclasses')
-rw-r--r--installclasses/custom.py1
-rw-r--r--installclasses/personal_desktop.py1
-rw-r--r--installclasses/server.py1
-rw-r--r--installclasses/workstation.py1
4 files changed, 4 insertions, 0 deletions
diff --git a/installclasses/custom.py b/installclasses/custom.py
index 440124c49..d338c9e8c 100644
--- a/installclasses/custom.py
+++ b/installclasses/custom.py
@@ -10,6 +10,7 @@ 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 "
diff --git a/installclasses/personal_desktop.py b/installclasses/personal_desktop.py
index 0ab07eba5..cd07a3818 100644
--- a/installclasses/personal_desktop.py
+++ b/installclasses/personal_desktop.py
@@ -7,6 +7,7 @@ from autopart import getAutopartitionBoot, autoCreatePartitionRequests
from fsset import *
class InstallClass(BaseInstallClass):
+ showLoginChoice = 0
name = N_("Personal Desktop")
pixmap = "workstation.png"
description = N_("Perfect for personal computers or laptops, select this "
diff --git a/installclasses/server.py b/installclasses/server.py
index 20c30fbb2..2367acbfa 100644
--- a/installclasses/server.py
+++ b/installclasses/server.py
@@ -7,6 +7,7 @@ from autopart import getAutopartitionBoot, autoCreatePartitionRequests
class InstallClass(BaseInstallClass):
+ showLoginChoice = 1
name = N_("Server")
pixmap = "server.png"
description = N_("Select this installation type if you would like to "
diff --git a/installclasses/workstation.py b/installclasses/workstation.py
index abd93c765..f3d86c4dc 100644
--- a/installclasses/workstation.py
+++ b/installclasses/workstation.py
@@ -3,6 +3,7 @@ from rhpl.translate import N_
import os
class InstallClass(personal_desktop.InstallClass):
+ showLoginChoice = 0
name = N_("Workstation")
pixmap = "workstation.png"
description = N_("This option installs a graphical desktop "