Changeset 5a38f35


Ignore:
Timestamp:
01/06/2021 04:57:47 AM (3 years ago)
Author:
Douglas R. Reno <renodr@…>
Branches:
10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
aacba80f
Parents:
bbeb20f
Message:

smartmontools: Add the smartd systemd unit provided by the package
cifs-utils: Remove unnecessary autoreconf

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    rbbeb20f r5a38f35  
    4545      <para>January 5th, 2021</para>
    4646      <itemizedlist>
     47        <listitem revision="systemd">
     48          <para>[renodr] - Introduce the systemd unit for smartmontools.</para>
     49        </listitem>
     50        <listitem>
     51          <para>[renodr] - Remove an unnecessary "autoreconf -fiv" command from
     52          cifs-utils.</para>
     53        </listitem>
    4754        <listitem>
    4855          <para>[renodr] - Update to node.js-14.15.4 (Security Update). Fixes
  • networking/netprogs/cifsutils.xml

    rbbeb20f r5a38f35  
    126126    </para>
    127127
    128 <screen revision="sysv"><userinput>autoreconf -fiv           &amp;&amp;
    129 ./configure --prefix=/usr \
     128<screen revision="sysv"><userinput>./configure --prefix=/usr \
    130129            --disable-pam \
    131130            --disable-systemd &amp;&amp;
    132131make</userinput></screen>
    133132
    134 <screen revision="systemd"><userinput>autoreconf -fiv           &amp;&amp;
    135 ./configure --prefix=/usr \
     133<screen revision="systemd"><userinput>./configure --prefix=/usr \
    136134            --disable-pam &amp;&amp;
    137135make</userinput></screen>
  • postlfs/filesystems/smartmontools.xml

    rbbeb20f r5a38f35  
    105105<screen revision="systemd"><userinput>./configure --prefix=/usr           \
    106106            --sysconfdir=/etc       \
    107             --with-initscriptdir=no \
    108107            --docdir=/usr/share/doc/smartmontools-&smartmontools-version; &amp;&amp;
    109108make</userinput></screen>
     
    118117
    119118<screen role="root"><userinput>make install</userinput></screen>
     119
     120  </sect2>
     121
     122  <sect2 role="commands" revision="sysv">
     123    <title>Command Explanations</title>
     124
     125    <para>
     126      <parameter>--with-initscriptdir=no</parameter>: This switch suppresses
     127      the default initialization script.  See below for the BLFS script.
     128    </para>
     129
     130    <para>
     131      <parameter>--with-libsystemd=no</parameter>: This switch disables support
     132      for the sd-notify notification system provided by systemd.
     133    </para>
    120134
    121135  </sect2>
     
    146160    </sect3>
    147161
    148     <sect3  id="smartmontoools-init" revision="sysv">
    149       <title>Boot Script</title>
    150 
    151       <para>
     162    <sect3  id="smartmontoools-init">
     163       <title><phrase revision="sysv">Boot Script</phrase>
     164              <phrase revision="systemd">Systemd Unit</phrase></title>
     165
     166      <para revision="sysv">
    152167        If you want the <application>smartd</application> daemon to
    153168        start automatically when the system is booted, install the
     
    156171      </para>
    157172
     173
     174      <para revision="systemd">
     175        If you want the <application>smartd</application> daemon to
     176        start automatically when the system is booted, enable the
     177        systemd unit provided by the package by executing the
     178        following command as the
     179        <systemitem class="username">root</systemitem> user:
     180      </para>
     181
    158182      <indexterm zone="smartmontools smartmontoools-init">
    159183        <primary sortas="f-smartd">smartd</primary>
    160184      </indexterm>
    161185
    162 <screen role="root"><userinput>make install-smartd</userinput></screen>
    163 
     186<screen role="root" revision="sysv"><userinput>make install-smartd</userinput></screen>
     187
     188<screen role="root" revision="systemd"><userinput>systemctl enable smartd</userinput></screen>
    164189    </sect3>
    165 
    166   </sect2>
    167 
    168   <sect2 role="commands">
    169     <title>Command Explanations</title>
    170 
    171     <para>
    172       <parameter>--with-initscriptdir=no</parameter>: This switch suppresses
    173       the default initialization script.  See above for the BLFS script.
    174     </para>
    175190
    176191  </sect2>
Note: See TracChangeset for help on using the changeset viewer.