Ignore:
Timestamp:
03/31/2006 02:07:53 AM (18 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
9f6abab3
Parents:
650e5ac
Message:

Updated to Stunnel-4.15

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • postlfs/security/stunnel.xml

    r650e5ac rab47e379  
    55  %general-entities;
    66
    7   <!-- <!ENTITY stunnel-download-http "http://www.stunnel.org/download/stunnel/src/stunnel-&stunnel-version;.tar.gz"> -->
    87  <!ENTITY stunnel-download-http "http://www.stunnel.org/download/stunnel/src/stunnel-&stunnel-version;.tar.gz">
    98  <!ENTITY stunnel-download-ftp  "ftp://stunnel.mirt.net/stunnel/stunnel-&stunnel-version;.tar.gz">
    10   <!ENTITY stunnel-md5sum        "0969cc4868dfd75f22792ecccc9ec555">
    11   <!ENTITY stunnel-size          "488 KB">
    12   <!ENTITY stunnel-buildsize     "4.0 MB">
     9  <!ENTITY stunnel-md5sum        "2c00153ad099a5f9c5609e8d1dbbe470">
     10  <!ENTITY stunnel-size          "497 KB">
     11  <!ENTITY stunnel-buildsize     "4.2 MB">
    1312  <!ENTITY stunnel-time          "0.1 SBU">
    1413]>
     
    8887useradd -c "Stunnel Daemon" -d /var/lib/stunnel \
    8988        -g stunnel -s /bin/false -u 51 stunnel &amp;&amp;
    90 install -v -m700 -o stunnel -g stunnel -d /var/lib/stunnel/run</userinput></screen>
     89install -v -m 1770 -o stunnel -g stunnel -d /var/lib/stunnel/run</userinput></screen>
    9190
    9291    <note>
     
    106105-----BEGIN CERTIFICATE-----
    107106<replaceable>[many encrypted lines of certificate]</replaceable>
    108 -----END CERTIFICATE-----
    109 -----BEGIN DH PARAMETERS-----
    110 <replaceable>[multiple encrypted lines of DH parameters]</replaceable>
    111 -----END DH PARAMETERS-----</literal></screen>
     107-----END CERTIFICATE-----</literal></screen>
    112108    </note>
    113109
     
    115111    commands:</para>
    116112
    117 <screen><userinput>./configure --prefix=/usr --sysconfdir=/etc \
     113<screen><userinput>sed -i -e 's|nogroup|stunnel|' \
     114       -e 's|$(prefix)/var/lib|$(localstatedir)|' \
     115    tools/Makefile.in
     116sed -i 's|doc/stunnel|&amp;-$(VERSION)|' {,doc/,tools/}Makefile.in &amp;&amp;
     117
     118./configure --prefix=/usr --sysconfdir=/etc \
    118119    --localstatedir=/var/lib --disable-libwrap &amp;&amp;
    119120make</userinput></screen>
     
    129130  <sect2 role="commands">
    130131    <title>Command Explanations</title>
     132
     133    <para><command>sed -i -e '...' -e '...' tools/Makefile.in</command>:
     134    This <command>sed</command> command modifies the group and directory
     135    used for the <command>chroot</command> jail to conform with the parameters
     136    created earlier.</para>
     137
     138    <para><command>sed -i '...' {,doc/,tools/}Makefile.in</command>: This
     139    <command>sed</command> command modifies the location of the installed
     140    docs to a versioned directory.</para>
    131141
    132142    <para><parameter>--sysconfdir=/etc</parameter>: This parameter forces
     
    135145
    136146    <para><parameter>--localstatedir=/var/lib</parameter>: This parameter
    137     causes the installation process to create
     147    sets the installation to use
    138148    <filename class='directory'>/var/lib/stunnel</filename> instead of
     149    creating and using
    139150    <filename class='directory'>/usr/var/stunnel</filename>.</para>
    140151
     
    238249        <seg>stunnel and stunnel3</seg>
    239250        <seg>libstunnel.so</seg>
    240         <seg>/etc/stunnel, /var/lib/stunnel, and /usr/share/doc/stunnel</seg>
     251        <seg>/etc/stunnel, /var/lib/stunnel and
     252        /usr/share/doc/stunnel-&stunnel-version;</seg>
    241253      </seglistitem>
    242254    </segmentedlist>
Note: See TracChangeset for help on using the changeset viewer.