Changeset a75063d4 for content/web


Ignore:
Timestamp:
09/27/2003 06:46:10 PM (21 years ago)
Author:
Larry Lawrence <larry@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.0, 6.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, v5_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
0f47226
Parents:
009b52f
Message:

seperating para and screen sections

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

Location:
content/web/proftpd
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • content/web/proftpd/proftpd-config.xml

    r009b52f ra75063d4  
    1010 for example configurations.</para>
    1111
    12 <para><screen><userinput><command>cat &gt; /etc/proftpd.conf &lt;&lt; "EOF"</command>
     12<screen><userinput><command>cat &gt; /etc/proftpd.conf &lt;&lt; "EOF"</command>
    1313# This is a basic ProFTPD configuration file
    1414# It establishes a single server and a single anonymous login.
     
    6161  &lt;/Limit&gt;
    6262&lt;/Anonymous&gt;
    63 <command>EOF</command></userinput></screen></para></sect3>
     63<command>EOF</command></userinput></screen></sect3>
    6464
    6565
    6666<sect3><title>proftpd init.d script</title>
    6767
    68 <para><screen><userinput><command>cat &gt; /etc/rc.d/init.d/proftpd &lt;&lt; "EOF"</command>
     68<screen><userinput><command>cat &gt; /etc/rc.d/init.d/proftpd &lt;&lt; "EOF"</command>
    6969#!/bin/sh
    7070# Begin $rc_base/init.d/proftpd
     
    110110# End $rc_base/init.d/proftpd
    111111<command>EOF
    112 chmod 755 /etc/rc.d/init.d/proftpd</command></userinput></screen></para>
     112chmod 755 /etc/rc.d/init.d/proftpd</command></userinput></screen>
    113113
    114114<para>Create the symbolic links to this file in the relevant <filename
    115 class="directory">rc.d</filename> directories with the following commands:
     115class="directory">rc.d</filename> directories with the following
     116commands:</para>
    116117<screen><userinput><command>cd /etc/rc.d/init.d &amp;&amp;
    117118ln -sf ../init.d/proftpd ../rc0.d/K50proftpd &amp;&amp;
     
    121122ln -sf ../init.d/proftpd ../rc4.d/S50proftpd &amp;&amp;
    122123ln -sf ../init.d/proftpd ../rc5.d/S50proftpd &amp;&amp;
    123 ln -sf ../init.d/proftpd ../rc6.d/K50proftpd</command></userinput></screen></para>
     124ln -sf ../init.d/proftpd ../rc6.d/K50proftpd</command></userinput></screen>
    124125
    125126</sect3>
  • content/web/proftpd/proftpd-inst.xml

    r009b52f ra75063d4  
    55as an unpriviledged user and group is encouraged.</para>
    66
    7 <para><screen><userinput><command>groupadd proftpd &amp;&amp;
     7<screen><userinput><command>groupadd proftpd &amp;&amp;
    88useradd -c proftd -d /home/ftp -g proftpd -s /bin/false proftpd</command>
    9 </userinput></screen></para>
     9</userinput></screen>
    1010
    11 <para>Install ProFTPD by running the following commands:</para>
     11<para>Install <application>ProFTPD</application> by running the following commands:</para>
    1212
    13 <para><screen><userinput><command>install_user=proftpd install_group=proftpd \
     13<screen><userinput><command>install_user=proftpd install_group=proftpd \
    1414&nbsp;&nbsp;&nbsp;./configure --prefix=/usr --sysconfdir=/etc \
    1515&nbsp;&nbsp;&nbsp;--localstatedir=/var &amp;&amp;
    1616make &amp;&amp;
    17 make install </command></userinput></screen></para>
     17make install </command></userinput></screen>
    1818
    1919</sect2>
Note: See TracChangeset for help on using the changeset viewer.