Changeset 925357b


Ignore:
Timestamp:
01/29/2005 12:21:30 PM (19 years ago)
Author:
Matthew Burgess <matthew@…>
Children:
b0e0c46
Parents:
f427db4c
Message:
  • Upgrade to shadow-4.0.7

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

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    rf427db4c r925357b  
    3939<listitem><para>Perl 5.8.6</para></listitem>
    4040<listitem><para>Procps 3.2.4</para></listitem>
    41 <listitem><para>Shadow 4.0.6</para></listitem>
     41<listitem><para>Shadow 4.0.7</para></listitem>
    4242<listitem><para>Sysvinit 2.86</para></listitem>
    4343<listitem><para>Tar 1.15.1</para></listitem>
     
    7373<listitem><para>zlib-1.2.1-security-1.patch</para></listitem>
    7474</itemizedlist>
     75</listitem>
     76
     77<listitem><para>January 29, 2005 [matt]: Upgraded to shadow-4.0.7</para>
    7578</listitem>
    7679
  • chapter03/packages.xml

    rf427db4c r925357b  
    342342
    343343<varlistentry>
    344 <term>Shadow (&shadow-version;) - 795 KB:</term>
     344<term>Shadow (&shadow-version;) - 996 KB:</term>
    345345<listitem>
    346346<para><ulink url="&freshmeat;shadow/"/></para>
  • chapter06/shadow.xml

    rf427db4c r925357b  
    3232<para>Prepare Shadow for compilation:</para>
    3333
    34 <screen><userinput>./configure --libdir=/usr/lib --enable-shared</userinput></screen>
     34<screen><userinput>./configure --libdir=/lib --enable-shared</userinput></screen>
     35
     36<para>Remove the installation of the groups program, and its man page as
     37Coreutils provides a better version:</para>
     38
     39<screen><userinput>sed -i 's/groups$(EXEEXT) //' src/Makefile
     40sed -i '/groups/d' man/Makefile</userinput></screen>
    3541
    3642<para>Compile the package:</para>
     
    6369<indexterm zone="shadow-login_defs"><primary sortas="e-/etc/login.defs">/etc/login.defs</primary></indexterm>
    6470
    65 <screen><userinput>cp etc/login.defs.linux /etc/login.defs
    66 sed -i -e 's@#MD5_CRYPT_ENAB.no@MD5_CRYPT_ENAB yes@' \
    67     -e 's@/var/spool/mail@/var/mail@' /etc/login.defs</userinput></screen>
    68 
    69 <para>Move a misplaced program to their proper
    70 location:</para>
     71<screen><userinput>sed -e's@#MD5_CRYPT_ENAB.no@MD5_CRYPT_ENAB yes@' \
     72    -e 's@/var/spool/mail@/var/mail@' \
     73    etc/login.defs.linux &gt; /etc/login.defs</userinput></screen>
     74
     75<para>Move a misplaced program to its proper location:</para>
    7176
    7277<screen><userinput>mv /usr/bin/passwd /bin</userinput></screen>
    7378
    74 <para>Move Shadow's dynamic libraries to a more appropriate
    75 location:</para>
    76 
    77 <screen><userinput>mv /usr/lib/libshadow.so.0* /lib</userinput></screen>
    78 
    79 <para>Because some packages expect to find the just-moved libraries in
    80 <filename class="directory">/usr/lib</filename>, create the following
    81 symlink:</para>
    82 
    83 <screen><userinput>ln -sf ../../lib/libshadow.so.0 /usr/lib/libshadow.so</userinput></screen>
     79<para>Move Shadow's libraries to more appropriate locations:</para>
     80
     81<screen><userinput>mv /lib/libshadow.*a /usr/lib
     82rm /lib/libshadow.so
     83ln -sf ../../lib/libshadow.so.0 /usr/lib/libshadow.so</userinput></screen>
    8484
    8585<para>The <parameter>-D</parameter> option of the
     
    9090<screen><userinput>mkdir /etc/default</userinput></screen>
    9191
    92 <para>Coreutils has already installed a better
    93 <command>groups</command> program in <filename
    94 class="directory">/usr/bin</filename>.  Remove the one installed by
    95 Shadow:</para>
    96 
    97 <screen><userinput>rm /bin/groups</userinput></screen>
    9892<beginpage/>
    9993</sect2>
  • general.ent

    rf427db4c r925357b  
    6363<!ENTITY readline-version "5.0">
    6464<!ENTITY sed-version "4.1.2">
    65 <!ENTITY shadow-version "4.0.6">
     65<!ENTITY shadow-version "4.0.7">
    6666<!ENTITY syslog-ng-version "1.6.5">
    6767<!ENTITY sysvinit-version "2.86">
Note: See TracChangeset for help on using the changeset viewer.