Changeset 6d8b45a3


Ignore:
Timestamp:
12/25/2018 02:35:46 AM (5 years ago)
Author:
DJ Lucas <dj@…>
Branches:
elogind
Children:
b98dbfd
Parents:
3757ae7
Message:

Merge to HEAD 20872.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/BOOK-elogind@20873 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
17 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    r3757ae7 r6d8b45a3  
    11<!-- $LastChangedBy$ $Date$ -->
    22
    3 <!ENTITY day          "23">                   <!-- Always 2 digits -->
     3<!ENTITY day          "25">                   <!-- Always 2 digits -->
    44<!ENTITY month        "12">                   <!-- Always 2 digits -->
    55<!ENTITY year         "2018">
     
    77<!ENTITY copyholder   "The BLFS Development Team">
    88<!ENTITY version      "&year;-&month;-&day;">
    9 <!ENTITY releasedate  "December 23rd, &year;">
     9<!ENTITY releasedate  "December 25rd, &year;">
    1010<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    1111<!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
     
    6363<!ENTITY pypi                 "https://pypi.python.org/pypi">
    6464<!ENTITY appstream-glib-url   "http://people.freedesktop.org/~hughsient/appstream-glib/releases">
     65<!ENTITY elinks-url           "http://elinks.or.cz">
    6566
    6667<!-- These entities are used to identify versions of LFS
  • general/genlib/libuv.xml

    r3757ae7 r6d8b45a3  
    9595      commands:
    9696    </para>
     97<!--
     98Don't use cmake here to avoid circular dependency
    9799
    98100<screen><userinput>sed -i "/TARGETS uv_a ARCHIVE/d" CMakeLists.txt &amp;&amp;
     
    103105cmake -DCMAKE_INSTALL_PREFIX=/usr .. &amp;&amp;
    104106make </userinput></screen>
     107-->
    105108
     109<screen><userinput>sh autogen.sh                              &amp;&amp;
     110./configure --prefix=/usr --disable-static &amp;&amp;
     111make </userinput></screen>
     112<!--
    106113    <para>
    107114      If you want to run the tests, add -DBUILD_TESTING=true to
    108115      the cmake line above and after building run:
    109116      <command>make test</command>.
     117    </para>
     118-->
     119    <para>
     120      If you want to run the tests, run: <command>make check</command>.
    110121    </para>
    111122
     
    118129  </sect2>
    119130
    120 
     131<!--
    121132  <sect2 role="commands">
    122133    <title>Command Explanations</title>
     
    128139   
    129140  </sect2>
    130 
     141-->
    131142  <sect2 role="content">
    132143    <title>Contents</title>
  • general/genlib/qca.xml

    r3757ae7 r6d8b45a3  
    117117      -DCMAKE_BUILD_TYPE=Release                                 \
    118118      -DQCA_MAN_INSTALL_DIR:PATH=/usr/share/man                  \
    119       -DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0             \
     119      <!--      -DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0             \
    120120      -DOPENSSL_SSL_LIBRARY=/usr/lib/openssl-1.0/libssl.so       \
    121       -DOPENSSL_CRYPTO_LIBRARY=/usr/lib/openssl-1.0/libcrypto.so \
     121      -DOPENSSL_CRYPTO_LIBRARY=/usr/lib/openssl-1.0/libcrypto.so \ -->
    122122      ..                                                         &amp;&amp;
    123123
  • general/prog/ojdk-conf.xml

    r3757ae7 r6d8b45a3  
    109109
    110110<screen role="root"><userinput>/usr/sbin/make-ca -g --force &amp;&amp;
    111 ln -sfv /etc/ssl/java/cacerts /opt/jdk/lib/security/cacerts</userinput></screen>
     111ln -sfv /etc/pki/tls/java/cacerts /opt/jdk/lib/security/cacerts</userinput></screen>
    112112
    113113    <para>
  • general/sysutils/pciutils.xml

    r3757ae7 r6d8b45a3  
    148148    </para>
    149149
    150     <para revision="sysv">
    151       You may wish to add an entry to
    152       <systemitem class="username">root</systemitem>'s (or any other user who has
    153       write privilege to <filename class="directory">/usr/share/hwdata</filename>)
    154       crontab to automatically update the <filename>pci.ids</filename> file
    155       periodically.
    156     </para>
    157 
    158     <para revision="systemd">
     150    <para>
    159151      You should update the <filename>/usr/share/hwdata/pci.ids</filename> file
    160       periodically. Execute the following commands, as the
    161       <systemitem class="username">root</systemitem> user, to create a systemd
    162       timer to update it weekly on Sundays at 2:30 A.M. (local time):
    163     </para>
     152      periodically. <phrase revision="sysv">If you've installed
     153      <xref linkend="fcron"/> and completed the section on periodic jobs,
     154      execute</phrase><phrase revision="systemd">Execute</phrase> the following
     155      commands, as the  <systemitem class="username">root</systemitem> user,
     156      to create a <phrase revision="sysv">weekly cron job:</phrase>
     157      <phrase revision="systemd">systemd timer to update it weekly on Sundays
     158      at 2:30 A.M. (local time):</phrase>
     159    </para>
     160
     161<screen role="root" revision="sysv"><userinput>cat &gt; /etc/cron.weekly/update-pciids.sh &lt;&lt; "EOF" &amp;&amp;
     162<literal>#!/bin/bash
     163/usr/sbin/update-pciids</literal>
     164EOF
     165chmod 754 /etc/cron.weekly/update-pciids</userinput></screen>
    164166
    165167<screen role="root" revision="systemd"><userinput>cat &gt; /lib/systemd/system/update-pciids.service &lt;&lt; "EOF" &amp;&amp;
  • general/sysutils/usbutils.xml

    r3757ae7 r6d8b45a3  
    153153<screen role="root" revision="sysv"><userinput>wget http://www.linux-usb.org/usb.ids -O /usr/share/hwdata/usb.ids</userinput></screen>
    154154
    155     <para revision="sysv">
    156       You may wish to add an entry to
    157       <systemitem class="username">root</systemitem>'s (or any other user who has
    158       write privilege to <filename class="directory">/usr/share/hwdata</filename>)
    159       crontab to automatically update the <filename>usb.ids</filename> file
    160       periodically.
    161     </para>
    162 
    163     <para revision="systemd">
     155    <para>
    164156      You should update the <filename>/usr/share/hwdata/usb.ids</filename> file
    165       periodically. Execute the following commands, as the
    166       <systemitem class="username">root</systemitem> user, to create a systemd
    167       timer to update it weekly on Sundays at 3:00 A.M. (local time):
    168     </para>
     157      periodically. <phrase revision="sysv">If you've installed
     158      <xref linkend="fcron"/> and completed the section on periodic jobs,
     159      execute</phrase><phrase revision="systemd">Execute</phrase> the following       commands, as the  <systemitem class="username">root</systemitem> user,
     160      to create a <phrase revision="sysv">weekly cron job:</phrase>
     161      <phrase revision="systemd">systemd timer to update it weekly on Sundays
     162      at 2:30 A.M. (local time):</phrase>
     163    </para>
     164
     165<screen role="root" revision="sysv"><userinput>cat &gt; /etc/cron.weekly/update-
     166usbids.sh &lt;&lt; "EOF" &amp;&amp;
     167<literal>#!/bin/bash
     168/usr/bin/wget http://www.linux-usb.org/usb.ids -O /usr/share/hwdata/usb.ids</literal>
     169EOF
     170chmod 754 /etc/cron.weekly/update-usbids</userinput></screen>
    169171
    170172<screen role="root" revision="systemd"><userinput>cat &gt; /lib/systemd/system/update-usbids.service &lt;&lt; "EOF" &amp;&amp;
  • introduction/welcome/changelog.xml

    r3757ae7 r6d8b45a3  
    4343-->
    4444    <listitem>
     45      <para>December 25th, 2018</para>
     46      <itemizedlist>
     47        <listitem>
     48          <para>[dj] - Update pam_cracklib configuration with modern options
     49          and provide replacement configuration with pam_pwqaulity.</para>
     50        </listitem>
     51      </itemizedlist>
     52    </listitem>
     53
     54    <listitem>
    4555      <para>December 23rd, 2018</para>
    4656      <itemizedlist>
     57        <listitem>
     58          <para>[bdubbs] - Update to v4l-utils-1.16.3. Fixes
     59          <ulink url="&blfs-ticket-root;11454">#11454</ulink>.</para>
     60        </listitem>
     61        <listitem>
     62          <para>[bdubbs] - Update to nss-3.41. Fixes
     63          <ulink url="&blfs-ticket-root;11457">#11457</ulink>.</para>
     64        </listitem>
     65        <listitem>
     66          <para>[dj] - Add cron jobs for update-pciids and update-usbids.</para>
     67        </listitem>
    4768        <listitem>
    4869          <para>[dj] - Correct NetworkManager meson options.</para>
  • kde/kf5-apps/konsole5.xml

    r3757ae7 r6d8b45a3  
    7575    <bridgehead renderas="sect4">Required</bridgehead>
    7676    <para role="required">
    77       <xref linkend="kf5-frameworks"/>,
     77      <xref linkend="kf5-frameworks"/>
    7878    </para>
    7979
  • multimedia/cdwriteutils/cdrtools.xml

    r3757ae7 r6d8b45a3  
    133133      <?dbhtml list-presentation="table"?>
    134134
     135      <varlistentry id="btcflash">
     136        <term><command>btcflash</command></term>
     137        <listitem>
     138          <para>flashes the firmware on BTC DRW1008 DVD+/-RW recorder.
     139          Please exercise care with this program.</para>
     140          <indexterm zone="cdrtools btcflash">
     141            <primary sortas="b-btcflash">btcflash</primary>
     142          </indexterm>
     143        </listitem>
     144      </varlistentry>
     145
    135146      <varlistentry id="cdda2wav">
    136147        <term><command>cdda2wav</command></term>
  • multimedia/libdriv/v4l-utils.xml

    r3757ae7 r6d8b45a3  
    77  <!ENTITY v4l-download-http "https://www.linuxtv.org/downloads/v4l-utils/v4l-utils-&v4l-utils-version;.tar.bz2">
    88  <!ENTITY v4l-download-ftp  " ">
    9   <!ENTITY v4l-md5sum        "0b3553854c8b8b0102a823f8e150efbc">
     9  <!ENTITY v4l-md5sum        "ecc98c6140916135725a4d9ada10404f">
    1010  <!ENTITY v4l-size          "1.8 MB">
    1111  <!ENTITY v4l-buildsize     "87 MB">
  • networking/mailnews/mutt.xml

    r3757ae7 r6d8b45a3  
    9494      <xref linkend="lynx"/>,
    9595      <xref linkend="w3m"/>, or
    96       <ulink url="http://elinks.or.cz/">ELinks</ulink>
     96      <ulink url="&elinks-url;">ELinks</ulink>
    9797    </para>
    9898
  • packages.ent

    r3757ae7 r6d8b45a3  
    3030<!ENTITY nettle-version               "3.4.1">
    3131
    32 <!ENTITY nss-minor-version            "40">
    33 <!ENTITY nss-micro-version            "1">
    34 <!ENTITY nss-version                  "3.&nss-minor-version;.&nss-micro-version;">
    35 <!--<!ENTITY nss-version                  "3.&nss-minor-version;"> -->
     32<!ENTITY nss-minor-version            "41">
     33<!ENTITY nss-micro-version            "0">
     34<!--<!ENTITY nss-version                  "3.&nss-minor-version;.&nss-micro-version;">-->
     35<!ENTITY nss-version                  "3.&nss-minor-version;">
    3636
    3737<!ENTITY openssh-version              "7.9p1">
     
    947947<!ENTITY speexdsp-version             "1.2rc3">
    948948<!ENTITY taglib-version               "1.11.1">
    949 <!ENTITY v4l-utils-version            "1.16.2">
     949<!ENTITY v4l-utils-version            "1.16.3">
    950950<!ENTITY x264-version                 "20180819-2245">
    951951<!ENTITY x265-version                 "2.9">
  • postlfs/security/libpwquality.xml

    r3757ae7 r6d8b45a3  
    114114  </sect2>
    115115
     116  <sect2 role="configuration">
     117    <title>Configuring Libpwquality</title>
     118
     119    <para>
     120      <application>Libpwquality</application> is intended to be a
     121      functional replacement for the <filename>pam_cracklib.so</filename>
     122      module with additional options. To replace the
     123      <filename>pam_cracklib.so</filename> module with the
     124      <filename>pam_pwquality.so</filename> module, execute the following
     125      commands as the <systemitem class="username">root</systemitem> user:
     126    </para>
     127
     128<screen role="root"><userinput>mv /etc/pam.d/system-password{,.orig} &amp;&amp;
     129cat &gt; /etc/pam.d/system-password &lt;&lt; "EOF"
     130<literal># Begin /etc/pam.d/system-password
     131
     132# check new passwords for strength (man pam_pwquality)
     133password  required    pam_pwquality.so   authtok_type=UNIX retry=1 difok=1 \
     134                                         minlen=8 dcredit=0 ucredit=0 \
     135                                         lcredit=0 ocredit=0 minclass=1 \
     136                                         maxrepeat=0 maxsequence=0 \
     137                                         maxclassrepeat=0 geoscheck=0 \
     138                                         dictcheck=1 usercheck=1 \
     139                                         enforcing=1 badwords="" \
     140                                         dictpath=/lib/cracklib/pw_dict
     141# use sha512 hash for encryption, use shadow, and use the
     142# authentication token (chosen password) set by pam_pwquality
     143# above (or any previous modules)
     144password  required    pam_unix.so        sha512 shadow use_authtok
     145
     146# End /etc/pam.d/system-password</literal>
     147EOF
     148</userinput></screen>
     149
     150  </sect2>
     151   
    116152  <sect2 role="content">
    117153    <title>Contents</title>
     
    130166        </seg>
    131167        <seg>
    132           /etc/security
     168          None
     169          <!-- /etc/security was installed by Linux-PAM -->
    133170        </seg>
    134171      </seglistitem>
  • postlfs/security/linux-pam.xml

    r3757ae7 r6d8b45a3  
    115115      <xref linkend="libxslt"/> and either
    116116      <xref linkend="w3m"/> or
    117       <ulink url="http://elinks.or.cz/">elinks</ulink> (but with a link calling it
     117      <ulink url="&elinks-url;">elinks</ulink> (but with a link calling it
    118118      '<application>links</application>') and remove the documentation switch.
    119119    </para>
     
    318318
    319319# check new passwords for strength (man pam_cracklib)
    320 password  required    pam_cracklib.so   type=Linux retry=3 difok=5 \
    321                                         difignore=23 minlen=9 dcredit=1 \
    322                                         ucredit=1 lcredit=1 ocredit=1 \
    323                                         dictpath=/lib/cracklib/pw_dict
     320password  required    pam_cracklib.so    authtok_type=UNIX retry=1 difok=5 \
     321                                         minlen=9 dcredit=1 ucredit=1 \
     322                                         lcredit=1 ocredit=1 minclass=0 \
     323                                         maxrepeat=0 maxsequence0 \
     324                                         maxclassrepeat=0 \
     325                                         dictpath=/lib/cracklib/pw_dict
    324326# use sha512 hash for encryption, use shadow, and use the
    325327# authentication token (chosen password) set by pam_cracklib
    326328# above (or any previous modules)
    327 password  required    pam_unix.so       sha512 shadow use_authtok
     329password  required    pam_unix.so        sha512 shadow use_authtok
    328330
    329331# End /etc/pam.d/system-password</literal>
  • postlfs/security/nss.xml

    r3757ae7 r6d8b45a3  
    99
    1010<!-- micro versions -->
    11 <!ENTITY nss-download-http "https://&nss-url;/NSS_3_&nss-minor-version;_&nss-micro-version;_RTM/src/nss-&nss-version;.tar.gz">
     11<!--<!ENTITY nss-download-http "https://&nss-url;/NSS_3_&nss-minor-version;_&nss-micro-version;_RTM/src/nss-&nss-version;.tar.gz">-->
    1212
    1313<!-- no micro versions -->
    14 <!-- <!ENTITY nss-download-http "https://&nss-url;/NSS_3_&nss-minor-version;_RTM/src/nss-&nss-version;.tar.gz"> -->
     14<!ENTITY nss-download-http "https://&nss-url;/NSS_3_&nss-minor-version;_RTM/src/nss-&nss-version;.tar.gz">
    1515
    1616  <!ENTITY nss-download-ftp " ">
    17   <!ENTITY nss-md5sum        "589ab784db168e876bd9ae4eef294728">
    18   <!ENTITY nss-size          "23 MB">
    19   <!ENTITY nss-buildsize     "138 MB">
     17  <!ENTITY nss-md5sum        "eec62a289387a7ce2fd9cca1f76600f3">
     18  <!ENTITY nss-size          "22 MB">
     19  <!ENTITY nss-buildsize     "133 MB">
    2020  <!ENTITY nss-time          "2.2 SBU">
    2121]>
  • pst/xml/xmlto.xml

    r3757ae7 r6d8b45a3  
    8585      <xref role="runtime" linkend="lynx"/>,
    8686      <xref role="runtime" linkend="w3m"/>, or
    87       <ulink url="http://elinks.or.cz/">ELinks</ulink>
     87      <ulink url="&elinks-url;">ELinks</ulink>
    8888    </para>
    8989
  • server/major/apache.xml

    r3757ae7 r6d8b45a3  
    104104      <xref linkend="lynx"/> or
    105105      <xref linkend="Links"/> or
    106       <ulink url="http://elinks.or.cz/">ELinks</ulink>,
     106      <ulink url="&elinks-url;">ELinks</ulink>,
    107107      <xref linkend="nghttp2"/>,
    108108      <xref linkend="openldap"/> (<xref linkend="apr-util"/> needs to be
Note: See TracChangeset for help on using the changeset viewer.