From 00cd1aedfc82d66899379993dcbc9c740a1415db Mon Sep 17 00:00:00 2001 From: Oğuz Ersen Date: Sep 30 2021 15:57:06 +0000 Subject: Fix wrong wordings and whitespace --- diff --git a/modules/install-guide/pages/advanced/Boot_Options.adoc b/modules/install-guide/pages/advanced/Boot_Options.adoc index fa513f4..074e059 100644 --- a/modules/install-guide/pages/advanced/Boot_Options.adoc +++ b/modules/install-guide/pages/advanced/Boot_Options.adoc @@ -370,7 +370,7 @@ A system installed using `VNC` will start in text mode by default. ==== -[option]#inst.vncpassword=#:: `VNC` server used by the installation program. Any `VNC` client attempting to connect to the system will have to provide the correct password to gain access. For example, [option]#inst.vncpassword=pass:attributes[{blank}]_testpwd_pass:attributes[{blank}]# will set the password to `testpwd`. The password must be between 6 and 8 characters long. +[option]#inst.vncpassword=#:: `VNC` password used by the installation program. Any `VNC` client attempting to connect to the system will have to provide the correct password to gain access. For example, [option]#inst.vncpassword=pass:attributes[{blank}]_testpwd_pass:attributes[{blank}]# will set the password to `testpwd`. The password must be between 6 and 8 characters long. + [NOTE] ==== diff --git a/modules/install-guide/pages/appendixes/Kickstart_Syntax_Reference.adoc b/modules/install-guide/pages/appendixes/Kickstart_Syntax_Reference.adoc index 2d7e64d..1b4c186 100644 --- a/modules/install-guide/pages/appendixes/Kickstart_Syntax_Reference.adoc +++ b/modules/install-guide/pages/appendixes/Kickstart_Syntax_Reference.adoc @@ -1051,7 +1051,7 @@ Creates a Logical Volume Management (LVM) volume group. Do not use the dash (`-`) character in logical volume and volume group names when installing {PRODUCT} using Kickstart. If this character is used, the installation will finish normally, but the `/dev/mapper/` directory will list these volumes and volume groups with every dash doubled. For example, a volume group named `volgrp-01` containing a logical volume named `logvol-01` will be listed as `/dev/mapper/volgrp--01-logvol--01`. -This limitation only applies to newly created logical volume and volume group names. If you are reusing existing ones using the [option]#--noformat# or [option]#--noformat# option, their names will not be changed. +This limitation only applies to newly created logical volume and volume group names. If you are reusing existing ones using the [option]#--noformat# or [option]#--useexisting# option, their names will not be changed. ==== @@ -1950,7 +1950,9 @@ You can expand the basic [application]*Anaconda* and Kickstart functionality by To use an add-on in your Kickstart file, add the [command]#%addon _addon_name_ _options_pass:attributes[{blank}]# command. The section must be closed with an [command]#%end# statement. For example, to use the [application]*Kdump* add-on, which is included by default on some installations, use the following block: ---- -%addon com_redhat_kdump --enable --reserve-mb=128%end + +%addon com_redhat_kdump --enable --reserve-mb=128 +%end ---- @@ -1975,7 +1977,7 @@ Use the [command]#%include _/path/to/file_pass:attributes[{blank}]# command to i [[sect-kickstart-commands-ksappend]] ==== %ksappend (optional) - Append Contents of Another File -The [command]#%ksappend _url_pass:attributes[{blank}]# directive is very similar to xref:sect-kickstart-commands-include[%include (optional) - Include Contents of Another File] in that it is used to include the contents of additional files as though they were at the location of the [command]#%ksappend# command. The difference is in when the two directives are processed. +The [command]#%ksappend _URL_pass:attributes[{blank}]# directive is very similar to xref:sect-kickstart-commands-include[%include (optional) - Include Contents of Another File] in that it is used to include the contents of additional files as though they were at the location of the [command]#%ksappend# command. The difference is in when the two directives are processed. [command]#%ksappend# is processed in an initial pass, before any other part of the Kickstart file. Then, this expanded Kickstart file is passed to the rest of [application]*Anaconda* where all [command]#%pre# scripts are handled, and then finally the rest of the Kickstart file is processed in order, which includes [command]#%include# directives.