diff options
author | Chris Lumens <clumens@redhat.com> | 2005-06-28 18:42:55 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2005-06-28 18:42:55 +0000 |
commit | ac120dc77bcbabf566beaaeceddfdf2575279b52 (patch) | |
tree | 182bcfff9484133b3fc420d848701db6ea1ee908 /docs | |
parent | 66e26cbfe6b118a8536bb1b72874865e75ebbcbf (diff) | |
download | anaconda-ac120dc77bcbabf566beaaeceddfdf2575279b52.tar.gz anaconda-ac120dc77bcbabf566beaaeceddfdf2575279b52.tar.xz anaconda-ac120dc77bcbabf566beaaeceddfdf2575279b52.zip |
Deprecate the langsupport kickstart keyword in favor of adding language
support package groups to the %packages section of the kickstart file.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/kickstart-docs.txt | 31 |
1 files changed, 10 insertions, 21 deletions
diff --git a/docs/kickstart-docs.txt b/docs/kickstart-docs.txt index 9917d72aa..818520596 100644 --- a/docs/kickstart-docs.txt +++ b/docs/kickstart-docs.txt @@ -606,7 +606,8 @@ Creating the Kickstart File lang (required) - Sets the language to use during installation. For example, to set + Sets the language to use during installation and the default + language to use on the installed system. For example, to set the language to English, the kickstart file should contain the following line: @@ -616,28 +617,16 @@ Creating the Kickstart File list the valid language codes in the first column of each line and is part of the redhat-config-languages package. - langsupport (required) + langsupport - Sets the language(s) to install on the system. The same language - codes used with lang can be used with langsupport. + The langsupport keyword is deprecated and its use will cause an + error message to be printed to the screen and installation to halt. + Instead of using the langsupport keyword, you should now list the + support package groups for all languages you want supported in the + %packages section of your kickstart file. Fr instance, adding + support for French means you should add the following to %packages: - To install one language, specify it. For example, to install and - use the French language fr_FR: - - langsupport fr_FR - - --default= - - If language support for more than one language is specified, a - default must be identified. - - For example, to install English and French and use English as the - default language: - - langsupport --default=en_US fr_FR - - If you use --default with only one language, all languages will be - installed with the specified language set to the default. + @french-support logvol (optional) |