From 38aeb1383a491113fe9ca319e47121d2ffe36708 Mon Sep 17 00:00:00 2001 From: Alois Mahdal Date: Sep 08 2021 13:09:02 +0000 Subject: Don't use removed KS command as an example Following note: > * The command section which contains actual Kickstart commands and > options as listed in Kickstart Syntax Reference. Note that some > commands, such as install, are mandatory, but most commands are > optional. mentions `install` command, which has been removed (according to *ksvalidator*). This commit is replacing it with `bootloader` command, which is still valid and required. --- diff --git a/modules/install-guide/pages/advanced/Kickstart_Installations.adoc b/modules/install-guide/pages/advanced/Kickstart_Installations.adoc index 35e75ce..c7668d0 100644 --- a/modules/install-guide/pages/advanced/Kickstart_Installations.adoc +++ b/modules/install-guide/pages/advanced/Kickstart_Installations.adoc @@ -39,7 +39,7 @@ When creating a Kickstart file, keep in mind the following: * Sections must be specified *in order*. Items within the sections do not have to be in a specific order unless otherwise specified. The correct section order is: + -** The command section which contains actual Kickstart commands and options as listed in xref:appendixes/Kickstart_Syntax_Reference.adoc#appe-kickstart-syntax-reference[Kickstart Syntax Reference]. Note that some commands, such as [command]#install#, are mandatory, but most commands are optional. +** The command section which contains actual Kickstart commands and options as listed in xref:appendixes/Kickstart_Syntax_Reference.adoc#appe-kickstart-syntax-reference[Kickstart Syntax Reference]. Note that some commands, such as [command]#bootloader#, are mandatory, but most commands are optional. + ** The [command]#%packages# section which contains a list of packages and package groups to be installed. See xref:appendixes/Kickstart_Syntax_Reference.adoc#sect-kickstart-packages[%packages (required) - Package Selection] for details. +