summaryrefslogtreecommitdiffstats
path: root/installclasses/server.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2003-04-21 21:21:00 +0000
committerMike Fulbright <msf@redhat.com>2003-04-21 21:21:00 +0000
commita1d052dc853808b98a7acf681db4a083844ad1ca (patch)
tree7f7d9b922a9bb33415439dcf186e65463c9098e8 /installclasses/server.py
parent5ffcf43c6e4c8f9b8ccca8f6da736ea754713212 (diff)
downloadanaconda-a1d052dc853808b98a7acf681db4a083844ad1ca.tar.gz
anaconda-a1d052dc853808b98a7acf681db4a083844ad1ca.tar.xz
anaconda-a1d052dc853808b98a7acf681db4a083844ad1ca.zip
make class names have mnemonic marker in them - just filter out if desired (like in TUI)
Diffstat (limited to 'installclasses/server.py')
-rw-r--r--installclasses/server.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/installclasses/server.py b/installclasses/server.py
index bb34f64ac..73952d274 100644
--- a/installclasses/server.py
+++ b/installclasses/server.py
@@ -7,8 +7,8 @@ from autopart import getAutopartitionBoot, autoCreatePartitionRequests
class InstallClass(BaseInstallClass):
- showLoginChoice = 1
- name = N_("Server")
+ # name has underscore used for mnemonics, strip if you dont need it
+ 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. "
@@ -17,6 +17,7 @@ class InstallClass(BaseInstallClass):
"environment.")
sortPriority = 10
+ showLoginChoice = 1
def setSteps(self, dispatch):
BaseInstallClass.setSteps(self, dispatch);