diff options
author | Christophe Trussardi <chris@teria.org> | 2013-01-02 21:12:20 +0100 |
---|---|---|
committer | dsomero <xgizzmo@slackbuilds.org> | 2013-01-09 18:52:16 -0500 |
commit | 7300e7bd4d79f84b00b0d31cb3fffc53e77f6299 (patch) | |
tree | 12bc071f57015762320d21b2309306dd80c556e8 /network/pure-ftpd/README | |
parent | 77df938196d1ac4b21673e2daca6b080793d8894 (diff) | |
download | slackbuilds-7300e7bd4d79f84b00b0d31cb3fffc53e77f6299.tar.gz |
network/pure-ftpd: Added (FTP server).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'network/pure-ftpd/README')
-rw-r--r-- | network/pure-ftpd/README | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/network/pure-ftpd/README b/network/pure-ftpd/README new file mode 100644 index 0000000000..b33f04c50c --- /dev/null +++ b/network/pure-ftpd/README @@ -0,0 +1,25 @@ +Pure-FTPd is a free (BSD), secure, production-quality and +standard-conformant FTP server. It doesn't provide useless bells +and whistles, but focuses on efficiency and ease of use. It provides +simple answers to common needs, plus unique useful features for personal +users as well as hosting providers. + +You can enable optional (not-autodetected) features by passing variables +to the script (VAR=yes/no ./pure-ftpd.SlackBuild): +MYSQL=yes|no (default: no), requires mysql (available in Slackware) +PGSQL=yes|no (default: no), requires postgresql +TLS=yes|no (default: no), requires openssl (available in Slackware) +LANGUAGE=english|german|french ... (default: english, +see http://download.pureftpd.org/pub/pure-ftpd/doc/README for a complete +list) + +If you want to start the pure-ftpd daemon at boot, add this +to /etc/rc.d/rc.local + + # Start pure-ftpd: + if [ -x /etc/rc.d/rc.pure-ftpd ]; then + /etc/rc.d/rc.pure-ftpd start + fi + +to stop it at shutdown add the same lines, changing "start" with "stop", +to /etc/rc.d/rc.local_shutdown |