Changeset 1f686d2 for server


Ignore:
Timestamp:
02/08/2004 05:55:58 PM (20 years ago)
Author:
Igor Živković <igor@…>
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_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
eb531bf
Parents:
785d4d91
Message:

rsync corrections

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

Location:
server/other/rsync
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • server/other/rsync/rsync-config.xml

    r785d4d91 r1f686d2  
    33
    44<sect3><title>Config files</title>
     5<para><filename>/etc/rsyncd.conf</filename></para>
     6</sect3>
    57
    6 <para><filename>/etc/rsyncd.conf</filename></para>
     8<sect3><title>Configuration Information</title>
     9
    710<para>This is a simple download-only configuration. See the rsyncd man-page for
    811additional options (i.e. user authentication).</para>
     
    1619
    1720[localhost]
    18         path = /home/rsync
    19         comment = Default rsync module
    20         read only = yes
    21         list = yes
    22         uid = rsyncd
    23         gid = rsyncd
     21    path = /home/rsync
     22    comment = Default rsync module
     23    read only = yes
     24    list = yes
     25    uid = rsyncd
     26    gid = rsyncd
    2427
    2528<command>EOF</command></userinput></screen>
     
    4649
    4750case "$1" in
    48         start)
    49                 echo "Starting RSYNC Server..."
    50                 loadproc /usr/bin/rsync --daemon --compress
    51                 ;;
     51    start)
     52        echo "Starting RSYNC Server..."
     53        loadproc /usr/bin/rsync --daemon --compress
     54        ;;
    5255
    53         stop)
    54                 echo "Stopping RSYNC Server..."
    55                 killproc /usr/bin/rsync
    56                 ;;
     56    stop)
     57        echo "Stopping RSYNC Server..."
     58        killproc /usr/bin/rsync
     59        ;;
    5760
    58         reload)
    59                 echo "Reloading RSYNC Server..."
    60                 reloadproc /usr/bin/rsync
    61                 ;;
     61    reload)
     62        echo "Reloading RSYNC Server..."
     63        reloadproc /usr/bin/rsync
     64        ;;
    6265           
    63         restart)
    64                 $0 stop
    65                 sleep 1
    66                 $0 start
    67                 ;;
     66    restart)
     67        $0 stop
     68        sleep 1
     69        $0 start
     70        ;;
    6871
    69         status)
    70                 statusproc /usr/bin/rsync
    71                 ;;
     72    status)
     73        statusproc /usr/bin/rsync
     74        ;;
    7275
    73         *)
    74                 echo "Usage: $0 {start|stop|reload|restart|status}"
    75                 exit 1
    76                 ;;
     76    *)
     77        echo "Usage: $0 {start|stop|reload|restart|status}"
     78        exit 1
     79        ;;
    7780esac
    7881
     
    9699
    97100</sect2>
    98 
  • server/other/rsync/rsync-exp.xml

    r785d4d91 r1f686d2  
    22<title>Command explanations</title>
    33
    4 <para><command>--prefix=/usr</command>
    5 : This installs rsync in <filename class="directory">/usr</filename> instead of
    6 <filename class="directory">/usr/local</filename></para>
     4<para><parameter>--prefix=/usr</parameter>: This installs rsync in
     5<filename class="directory">/usr</filename> instead of
     6<filename class="directory">/usr/local</filename>.</para>
    77
    88</sect2>
    9 
  • server/other/rsync/rsync-intro.xml

    r785d4d91 r1f686d2  
    1515</sect3>
    1616
     17<sect3><title><application>rsync</application> dependencies</title>
     18<sect4><title>Optional</title>
     19<para>
     20<xref linkend="popt"/>
     21</para></sect4>
     22</sect3>
     23
    1724</sect2>
    18 
Note: See TracChangeset for help on using the changeset viewer.