diff options
-rw-r--r-- | nl/appendix/preseed.xml | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/nl/appendix/preseed.xml b/nl/appendix/preseed.xml index eba454718..962058c63 100644 --- a/nl/appendix/preseed.xml +++ b/nl/appendix/preseed.xml @@ -1,5 +1,5 @@ <!-- retain these comments for translator revision tracking --> -<!-- original version: 52902 untranslated --> +<!-- original version: 52907 untranslated --> <!-- Be careful with the format of this file as it is parsed to generate @@ -1135,7 +1135,7 @@ authentication or <command>sudo</command>). </para><para> -An MD5 hash for a password can be generated using the following command. +The following command can be used to generate an MD5 hash for a password: <informalexample><screen> $ echo "r00tme" | mkpasswd -s -m md5 @@ -1294,10 +1294,17 @@ d-i grub-installer/with_other_os boolean true # Optional password for grub, either in clear text #d-i grub-installer/password password r00tme #d-i grub-installer/password-again password r00tme -# or encrypted using an MD5 hash. +# or encrypted using an MD5 hash, see grub-md5-crypt(8). #d-i grub-installer/password-crypted password [MD5 hash] </screen></informalexample> +<para> + +An MD5 hash for a password for <classname>grub</classname> can be generated +using <command>grub-md5-crypt</command>, or using the command from the +example in <xref linkend="preseed-account"/>. + +</para> </sect2> <sect2 id="preseed-finish"> |