diff options
author | Jeremy Katz <katzj@redhat.com> | 2006-09-21 18:53:40 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2006-09-21 18:53:40 +0000 |
commit | 0edef7675c762031be568c8c0c08bba5dade7201 (patch) | |
tree | 8b1d4b84db32d726d6ec32f9575f7108ca3441f9 /installclasses | |
parent | 6771c853ba06b2d51165041c8862d558ab93dbb6 (diff) | |
download | anaconda-0edef7675c762031be568c8c0c08bba5dade7201.tar.gz anaconda-0edef7675c762031be568c8c0c08bba5dade7201.tar.xz anaconda-0edef7675c762031be568c8c0c08bba5dade7201.zip |
2006-09-21 Jeremy Katz <katzj@redhat.com>
* installclasses/rhel.py: Some text tweaks
Diffstat (limited to 'installclasses')
-rw-r--r-- | installclasses/rhel.py | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/installclasses/rhel.py b/installclasses/rhel.py index b95b784b9..5ed8d71dc 100644 --- a/installclasses/rhel.py +++ b/installclasses/rhel.py @@ -11,15 +11,13 @@ log = logging.getLogger("anaconda") # custom installs are easy :-) class InstallClass(BaseInstallClass): # name has underscore used for mnemonics, strip if you dont need it - id = "custom" + id = "rhel" name = N_("Red Hat Enterprise Linux") - pixmap = "custom.png" - description = N_("Select this installation type to gain complete " - "control over the installation process, including " - "software package selection and partitioning.") + description = N_("The default installation of %s includes a set of " + "software applicable for general internet usage. " + "What additional tasks would you like your system " + "to include support for?") %(productName,) sortPriority = 10000 - showLoginChoice = 1 - showMinimal = 1 if not productName.startswith("Red Hat Enterprise"): hidden = 1 |