diff options
author | Mike Fulbright <msf@redhat.com> | 2003-04-23 21:06:13 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2003-04-23 21:06:13 +0000 |
commit | d329870f732affa167f28fb261423fc6904158ec (patch) | |
tree | b4717f8dd123e1abcdd99d76bb3249388fc28097 /installclasses/server.py | |
parent | 1d947ba683b7624e47d1fa6164fe5d6d46a3b592 (diff) | |
download | anaconda-d329870f732affa167f28fb261423fc6904158ec.tar.gz anaconda-d329870f732affa167f28fb261423fc6904158ec.tar.xz anaconda-d329870f732affa167f28fb261423fc6904158ec.zip |
add unique id for each installclass for workflow screens (ie, desktop choice TUI/GUI) that need to know which installclass user selected.
Diffstat (limited to 'installclasses/server.py')
-rw-r--r-- | installclasses/server.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/installclasses/server.py b/installclasses/server.py index 73952d274..337a4cd91 100644 --- a/installclasses/server.py +++ b/installclasses/server.py @@ -8,6 +8,7 @@ from autopart import getAutopartitionBoot, autoCreatePartitionRequests 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 " |