Ignore:
Timestamp:
02/01/2003 04:51:51 PM (21 years ago)
Author:
Billy O 'Connor <billyoc@…>
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, v1_0, v5_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
123c844
Parents:
9a88a3b9
Message:

<screen> formatting fixes.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/other/cvsserver/cvsserver-inst.xml

    r9a88a3b9 r7319b78  
    1515<para>Create a new CVS repository with the following commands,
    1616logged in as root:</para>
    17 <para><screen><userinput>
    18 mkdir /cvsroot &amp;&amp;
     17<para><screen><userinput>mkdir /cvsroot &amp;&amp;
    1918chmod 1777 /cvsroot &amp;&amp;
    2019export CVSROOT=/cvsroot
     
    2625repository:</para>
    2726
    28 <para><screen><userinput>
    29 export CVSROOT=/cvsroot &amp;&amp;
     27<para><screen><userinput>export CVSROOT=/cvsroot &amp;&amp;
    3028cd sourcedir &amp;&amp;
    31 cvs import -m "repository test" cvstest vendortag releasetag
    32 </userinput></screen></para></sect3>
     29cvs import -m "repository test" cvstest vendortag releasetag</userinput></screen></para></sect3>
    3330
    3431<sect3><title>3. Verify local repository access.</title>
     
    3633with the following command:</para>
    3734
    38 <para><screen><userinput>
    39 cvs co cvstest
    40 </userinput></screen></para></sect3>
     35<para><screen><userinput>cvs co cvstest</userinput></screen></para></sect3>
    4136
    4237<sect3><title>4. Verify remote repository access.</title>
     
    5045
    5146
    52 <para><screen><userinput>
    53 export CVS_RSH=/usr/bin/ssh &amp;&amp;
    54 cvs -d:ext:servername:/cvsroot co cvstest
    55 </userinput></screen></para></sect3>
     47<para><screen><userinput>export CVS_RSH=/usr/bin/ssh &amp;&amp;
     48cvs -d:ext:servername:/cvsroot co cvstest</userinput></screen></para></sect3>
    5649</sect2>
    5750<sect2>
     
    6255commands:</para>
    6356
    64 <para><screen><userinput>
    65 (grep anonymous /etc/passwd || useradd anonymous -s /bin/false) &amp;&amp;
     57<para><screen><userinput>(grep anonymous /etc/passwd || useradd anonymous -s /bin/false) &amp;&amp;
    6658echo anonymous: > /cvsroot/CVSROOT/passwd &amp;&amp;
    67 echo anonymous > /cvsroot/CVSROOT/readers
    68 </userinput></screen></para>
     59echo anonymous > /cvsroot/CVSROOT/readers</userinput></screen></para>
    6960
    7061<para>If you use inetd, the following command will add the pserver
    7162entry to /etc/inetd.conf:</para>
    7263
    73 <para><screen><userinput>
    74 echo "2401  stream  tcp  nowait  root  /usr/bin/cvs cvs -f \
    75         --allow-root=/cvsroot pserver" &gt;&gt; /etc/inetd.conf
    76 </userinput></screen></para>
     64<para><screen><userinput>echo "2401  stream  tcp  nowait  root  /usr/bin/cvs cvs -f \
     65        --allow-root=/cvsroot pserver" &gt;&gt; /etc/inetd.conf</userinput></screen></para>
    7766
    7867<para>Issue a killall -HUP inetd to reread the changed inetd.conf
     
    8271entry to /etc/xinetd.conf:</para>
    8372
    84 <para><screen><userinput>
    85 cat &gt;&gt; /etc/xinetd.conf &lt;&lt; "EOF"
     73<para><screen><userinput>cat &gt;&gt; /etc/xinetd.conf &lt;&lt; "EOF"
    8674     service cvspserver
    8775     {
     
    9583         server_args = -f --allow-root=/cvsroot pserver
    9684     }
    97 EOF
    98 </userinput></screen></para>
     85EOF</userinput></screen></para>
    9986<para>Issue a killall -HUP xinetd to reread the changed xinetd.conf
    10087file.</para>
     
    10693and execute the following command:</para>
    10794
    108 <para><screen><userinput>
    109 cvs -d:pserver:anonymous@servername:/cvsroot co cvstest
    110 </userinput></screen><note><para>Replace "servername" with the IP
     95<para><screen><userinput>cvs -d:pserver:anonymous@servername:/cvsroot co cvstest</userinput></screen><note><para>Replace "servername" with the IP
    11196address or hostname of the CVS server</para></note></para>
    11297
Note: See TracChangeset for help on using the changeset viewer.