Browse Source

Change the default home directory for new users to /home and prevent useradd from creating mail spool files.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7969 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Matthew Burgess 18 years ago
parent
commit
d1538c0004
3 changed files with 16 additions and 0 deletions
  1. 7 0
      chapter01/changelog.xml
  2. 1 0
      chapter06/createfiles.xml
  3. 8 0
      chapter06/shadow.xml

+ 7 - 0
chapter01/changelog.xml

@@ -39,6 +39,13 @@
     <listitem>
       <para>2007-03-19</para>
       <itemizedlist>
+        <listitem>
+          <para>[matthew] - Change the default home directory for new users and
+          do not create mail spool files for them.  Add a
+          <systemitem class="groupname">mail</systemitem> group so that if
+          Shadow is configured to create mail spool files for new users, it can 
+          do so without issuing a warning.</para>
+        </listitem>
         <listitem>
           <para>[matthew] - Upgrade to Shadow-4.0.18.1.  Fixes
           <ulink url="&lfs-ticket-root;1850">#1850</ulink></para>

+ 1 - 0
chapter06/createfiles.xml

@@ -89,6 +89,7 @@ video:x:12:
 utmp:x:13:
 usb:x:14:
 cdrom:x:15:
+mail:x:34:
 nogroup:x:99:</literal>
 EOF</userinput></screen>
 

+ 8 - 0
chapter06/shadow.xml

@@ -158,6 +158,14 @@ ln -sfv ../../lib/libshadow.so.0 /usr/lib/libshadow.so</userinput></screen>
 
 <screen><userinput>grpconv</userinput></screen>
 
+    <para>Shadow's stock configuration for the <command>useradd</command>
+    utility is not suitable for LFS systems.  Use the following commands to
+    change the default home directory for new users and prevent the creation of
+    mail spool files:</para>
+
+<screen><userinput>useradd -D -b /home
+sed -i 's/yes/no/' /etc/default/useradd</userinput></screen>
+
   </sect2>
 
   <sect2 role="configuration">