Ignore:
Timestamp:
01/08/2004 09:17:21 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:
12415978
Parents:
0cc556f
Message:

updated to proftpd-1.2.9

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

Location:
content/web/proftpd
Files:
3 edited

Legend:

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

    r0cc556f rfb02823  
    77<para>This is a simple, download-only sample configuration. See the ProFTPD
    88documentation in <filename class="directory">/usr/share/doc/proftpd</filename>
    9 and consult the website at <ulink url="http://www.proftpd.net/"/>
     9and consult the website at <ulink url="http://www.proftpd.org/"/>
    1010 for example configurations.</para>
    1111
     
    1414# It establishes a single server and a single anonymous login.
    1515
    16 ServerName                      "ProFTPD Default Installation"
    17 ServerType                      standalone
    18 DefaultServer                   on
     16ServerName                      "ProFTPD Default Installation"
     17ServerType                      standalone
     18DefaultServer                   on
    1919
    2020# Port 21 is the standard FTP port.
    21 Port                            21
     21Port                            21
    2222# Umask 022 is a good standard umask to prevent new dirs and files
    2323# from being group and world writable.
    24 Umask                           022
     24Umask                           022
    2525
    2626# To prevent DoS attacks, set the maximum number of child processes
     
    3030# that allows you to limit maximum number of processes per service
    3131# (such as xinetd)
    32 MaxInstances                    30
     32MaxInstances                    30
    3333
    3434# Set the user and group that the server normally runs at.
    35 User                            proftpd
    36 Group                           proftpd
     35User                            proftpd
     36Group                           proftpd
    3737
    3838# Normally, we want files to be overwritable.
    3939&lt;Directory /*&gt;
    40   AllowOverwrite                on
     40  AllowOverwrite                on
    4141&lt;/Directory&gt;
    4242
    4343# A basic anonymous configuration, no upload directories.
    4444&lt;Anonymous ~proftpd&gt;
    45   User                          proftpd
    46   Group                         proftpd
     45  User                          proftpd
     46  Group                         proftpd
    4747  # We want clients to be able to login with "anonymous" as well as "proftpd"
    48   UserAlias                     anonymous proftpd
     48  UserAlias                     anonymous proftpd
    4949
    5050  # Limit the maximum number of anonymous logins
    51   MaxClients                    10
     51  MaxClients                    10
    5252
    5353  # We want 'welcome.msg' displayed at login, and '.message' displayed
    5454  # in each newly chdired directory.
    55   DisplayLogin                  welcome.msg
    56   DisplayFirstChdir             .message
     55  DisplayLogin                  welcome.msg
     56  DisplayFirstChdir             .message
    5757
    5858  # Limit WRITE everywhere in the anonymous chroot
     
    7878case "$1" in
    7979        start)
    80                 echo "Starting FTP Server..."
    81                 loadproc /usr/sbin/proftpd
    82                 ;;
     80                echo "Starting FTP Server..."
     81                loadproc /usr/sbin/proftpd
     82                ;;
    8383
    84         stop)
    85                 echo "Stopping FTP Server..."
    86                 killproc /usr/sbin/proftpd
    87                 ;;
     84        stop)
     85                echo "Stopping FTP Server..."
     86                killproc /usr/sbin/proftpd
     87                ;;
    8888
    89         reload)
    90                 echo "Reloading FTP Server..."
    91                 reloadproc /usr/sbin/proftpd
    92                 ;;
    93              
    94         restart)
    95                 $0 stop
    96                 sleep 1
    97                 $0 start
    98                 ;;
     89        reload)
     90                echo "Reloading FTP Server..."
     91                reloadproc /usr/sbin/proftpd
     92                ;;
    9993
    100         status)
    101                 statusproc /usr/sbin/proftpd
    102                 ;;
     94        restart)
     95                $0 stop
     96                sleep 1
     97                $0 start
     98                ;;
    10399
    104         *)
    105                 echo "Usage: $0 {start|stop|reload|restart|status}"
    106                 exit 1
    107                 ;;
     100        status)
     101                statusproc /usr/sbin/proftpd
     102                ;;
     103
     104        *)
     105                echo "Usage: $0 {start|stop|reload|restart|status}"
     106                exit 1
     107                ;;
    108108esac
    109109
     
    127127
    128128</sect2>
    129 
  • content/web/proftpd/proftpd-desc.xml

    r0cc556f rfb02823  
    2626
    2727<sect3><title>proftpd</title>
    28 <para><command>proftpd</command> the daemon itself.</para></sect3>
     28<para><command>proftpd</command> is the daemon itself.</para></sect3>
    2929
    3030</sect2>
    31 
  • content/web/proftpd/proftpd.ent

    r0cc556f rfb02823  
    55<!ENTITY proftpd-config SYSTEM "proftpd-config.xml">
    66<!ENTITY proftpd-desc SYSTEM "proftpd-desc.xml">
    7 <!ENTITY proftpd-version "1.2.8p">
     7<!ENTITY proftpd-version "1.2.9">
    88<!ENTITY proftpd-download-http "">
    99<!ENTITY proftpd-download-ftp "ftp://ftp.proftpd.org/distrib/source/proftpd-&proftpd-version;.tar.bz2">
    10 <!ENTITY proftpd-size "729 KB">
    11 <!ENTITY proftpd-buildsize "6.3 MB">
    12 <!ENTITY proftpd-time "0.26 SBU">
     10<!ENTITY proftpd-size "761 KB">
     11<!ENTITY proftpd-buildsize "6.4 MB">
     12<!ENTITY proftpd-time "0.27 SBU">
Note: See TracChangeset for help on using the changeset viewer.