summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess <joeyh@debian.org>2006-04-07 22:14:55 +0000
committerJoey Hess <joeyh@debian.org>2006-04-07 22:14:55 +0000
commit593ddfa3e3913d4eefd5ade0709f9d7e433f6010 (patch)
tree7c206da2c7d19825d1be780958e8743aa2e0cf09
parent50d6474ecad876f5f12201e6bb4aef0f34e9ceda (diff)
downloadinstallation-guide-593ddfa3e3913d4eefd5ade0709f9d7e433f6010.zip
* Document new passwd/root-login setting.
-rw-r--r--debian/changelog5
-rw-r--r--en/appendix/preseed.xml11
2 files changed, 11 insertions, 5 deletions
diff --git a/debian/changelog b/debian/changelog
index f646daba7..380747926 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -56,7 +56,10 @@ installation-guide (2006XXXX) UNRELEASED; urgency=low
[ Frans Pop ]
* Document new option to preseed additional apt sources for target system.
- -- Frans Pop <fjp@debian.org> Fri, 31 Mar 2006 16:20:01 +0200
+ [ Joey Hess ]
+ * Document new passwd/root-login setting.
+
+ -- Joey Hess <joeyh@debian.org> Fri, 7 Apr 2006 18:13:40 -0400
installation-guide (20060102) unstable; urgency=low
diff --git a/en/appendix/preseed.xml b/en/appendix/preseed.xml
index 1c3e99cad..dd30b76cb 100644
--- a/en/appendix/preseed.xml
+++ b/en/appendix/preseed.xml
@@ -755,16 +755,19 @@ for brute force attacks.
</para></warning>
<informalexample role="example"><screen>
+# Skip creation of a root account (normal user account will be able to
+# use sudo).
+#d-i passwd/root-login boolean false
+# Alternatively, to skip creation of a normal user account.
+#d-i passwd/make-user boolean false
+
# Root password, either in clear text
#d-i passwd/root-password password r00tme
#d-i passwd/root-password-again password r00tme
# or encrypted using an MD5 hash.
#d-i passwd/root-password-crypted password [MD5 hash]
-# Skip creation of a normal user account.
-#d-i passwd/make-user boolean false
-
-# Alternatively, create a normal user account.
+# To create a normal user account.
#d-i passwd/user-fullname string Debian User
#d-i passwd/username string debian
# Normal user's password, either in clear text