Changeset 2a975935


Ignore:
Timestamp:
02/19/2017 11:06:02 PM (7 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
23b9ed7
Parents:
ce8ddac
Message:

Add a fix (embeeded patch) to shadow to fix an upstream bug.
Minor text change in adjusting toolchanin.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11189 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    rce8ddac r2a975935  
    4444-->
    4545    <listitem>
     46      <para>2017-02-19</para>
     47      <itemizedlist>
     48        <listitem>
     49          <para>[bdubbs] - Add a fix (embeeded patch) to shadow
     50          to fix an upstream bug.</para>
     51        </listitem>
     52      </itemizedlist>
     53    </listitem>
     54
     55    <listitem>
    4656      <para>2017-02-13</para>
    4757      <itemizedlist>
  • chapter06/adjusting.xml

    rce8ddac r2a975935  
    5353<screen os="c"><computeroutput>[Requesting program interpreter: /lib64/ld-linux-x86-64.so.2]</computeroutput></screen>
    5454
    55   <para>Note that <filename class="directory">/lib</filename> is now
    56   the prefix of our dynamic linker.</para>
     55  <para>Note that on 64-bit systems <filename class="directory">/lib</filename> is
     56  the location of our dynamic linker, but is accessed via a symbolic link
     57  in /lib64.</para>
    5758
    5859  <note><para>On 32-bit systems the interpreter should be
  • chapter06/shadow.xml

    rce8ddac r2a975935  
    6868    class="directory">/var/mail</filename> location used currently:</para>
    6969
    70 <screen><userinput remap="configure">sed -i -e 's@#ENCRYPT_METHOD DES@ENCRYPT_METHOD SHA512@' \
     70<screen><userinput remap="pre">sed -i -e 's@#ENCRYPT_METHOD DES@ENCRYPT_METHOD SHA512@' \
    7171       -e 's@/var/spool/mail@/var/mail@' etc/login.defs</userinput></screen>
     72
     73    <para>Now fix a bug that prevents <command>useradd</command> from
     74    setting the shell entry in the /etc/passwd file.  In this case we need a
     75    short patch, but can include it directly here without the need for a
     76    separate file:</para>
     77
     78<screen><userinput remap="pre">echo '--- src/useradd.c   (old)
     79+++ src/useradd.c   (new)
     80@@ -2027,6 +2027,8 @@
     81        is_shadow_grp = sgr_file_present ();
     82 #endif
     83 
     84+       get_defaults ();
     85+
     86        process_flags (argc, argv);
     87 
     88 #ifdef ENABLE_SUBIDS
     89@@ -2036,8 +2038,6 @@
     90            (!user_id || (user_id &lt;= uid_max &amp;&amp; user_id >= uid_min));
     91 #endif                         /* ENABLE_SUBIDS */
     92 
     93-       get_defaults ();
     94-
     95 #ifdef ACCT_TOOLS_SETUID
     96 #ifdef USE_PAM
     97        {' | patch -p0 -l</userinput></screen>
    7298
    7399    <note>
  • general.ent

    rce8ddac r2a975935  
    1 <!ENTITY version         "SVN-20170213">
     1<!ENTITY version         "SVN-20170219">
    22<!ENTITY short-version   "svn">  <!-- Used below in &blfs-book;
    33                                      Change to x.y for release but not -rc releases -->
    44<!ENTITY generic-version "development"> <!-- Use "development"  or "x.y[-pre{x}]" -->
    55
    6 <!ENTITY versiond        "20170213-systemd">
     6<!ENTITY versiond        "20170219-systemd">
    77<!ENTITY short-versiond  "systemd">
    88<!ENTITY generic-versiond "systemd">
    99
    10 <!ENTITY releasedate     "February 13, 2017">
     10<!ENTITY releasedate     "February 19, 2017">
    1111<!ENTITY copyrightdate   "1999-2017"><!-- jhalfs needs a literal dash, not &ndash; -->
    1212<!ENTITY milestone       "8.0">
Note: See TracChangeset for help on using the changeset viewer.