summaryrefslogtreecommitdiff
path: root/en
diff options
context:
space:
mode:
authorFrans Pop <elendil@planet.nl>2009-04-05 23:13:35 +0000
committerFrans Pop <elendil@planet.nl>2009-04-05 23:13:35 +0000
commit8845b3e73595694b76d36271ae711bb44978de09 (patch)
tree6e3b9ffe6a7ec2db48ec748817666668e098710f /en
parent1ed636e096733f38d98e9139b19025a94f18f1c6 (diff)
downloadinstallation-guide-8845b3e73595694b76d36271ae711bb44978de09.zip
Fix example how to generate md5-encoded password
If a plain echo is used the newline gets included in the password. Thanks to René Engelhard for reporting the error.
Diffstat (limited to 'en')
-rw-r--r--en/appendix/preseed.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/en/appendix/preseed.xml b/en/appendix/preseed.xml
index 47215fe92..c3728a263 100644
--- a/en/appendix/preseed.xml
+++ b/en/appendix/preseed.xml
@@ -1173,7 +1173,7 @@ authentication or <command>sudo</command>).
The following command can be used to generate an MD5 hash for a password:
<informalexample><screen>
-$ echo "r00tme" | mkpasswd -s -m md5
+$ printf "r00tme" | mkpasswd -s -m md5
</screen></informalexample>
</para>