summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Verwilst <verwilst@gentoo.org>2002-01-20 20:46:41 +0000
committerBart Verwilst <verwilst@gentoo.org>2002-01-20 20:46:41 +0000
commiteb79df12884647c62dea467ba17d6f3d43de943c (patch)
treeb283bdd921645b0044a3855f51d77c972a8b9385 /net-ftp/pure-ftpd/files
parenthopefully fix the build problem now (diff)
downloadgentoo-2-eb79df12884647c62dea467ba17d6f3d43de943c.tar.gz
gentoo-2-eb79df12884647c62dea467ba17d6f3d43de943c.tar.bz2
gentoo-2-eb79df12884647c62dea467ba17d6f3d43de943c.zip
New, working version of pure-ftpd
Diffstat (limited to 'net-ftp/pure-ftpd/files')
-rw-r--r--net-ftp/pure-ftpd/files/digest-pure-ftpd-1.0.8_beta-r1 (renamed from net-ftp/pure-ftpd/files/digest-pure-ftpd-1.0.8_beta)0
-rw-r--r--net-ftp/pure-ftpd/files/pure-ftpd.conf_d7
-rw-r--r--net-ftp/pure-ftpd/files/pure-ftpd.rc62
3 files changed, 4 insertions, 5 deletions
diff --git a/net-ftp/pure-ftpd/files/digest-pure-ftpd-1.0.8_beta b/net-ftp/pure-ftpd/files/digest-pure-ftpd-1.0.8_beta-r1
index 381bb4eaf47c..381bb4eaf47c 100644
--- a/net-ftp/pure-ftpd/files/digest-pure-ftpd-1.0.8_beta
+++ b/net-ftp/pure-ftpd/files/digest-pure-ftpd-1.0.8_beta-r1
diff --git a/net-ftp/pure-ftpd/files/pure-ftpd.conf_d b/net-ftp/pure-ftpd/files/pure-ftpd.conf_d
index 996191a71ce7..51630ecf8311 100644
--- a/net-ftp/pure-ftpd/files/pure-ftpd.conf_d
+++ b/net-ftp/pure-ftpd/files/pure-ftpd.conf_d
@@ -5,7 +5,7 @@
#IS_CONFIGURED="yes"
## FTP Server,Port (separated by comma) ##
-PORT="-S 192.168.0.1,21"
+SERVER="-S 192.168.0.1,21"
## Number of simultaneous connections in total, and per ip ##
MAX_CONN="-c 30"
@@ -15,16 +15,15 @@ MAX_CONN_IP="-C 10"
DAEMON="-B"
## Don't allow uploads if the partition is more full then this var ##
-DISK_FULL="-k 95%"
+DISK_FULL="-k 90%"
## If your FTP server is behind a NAT box, uncomment this ##
#USE_NAT="-N"
-## Authentication ##
+## Authentication (others are 'pam', ...)##
AUTH="-l unix"
-
## Misc. Others ##
MISC_OTHER="-A -x"
diff --git a/net-ftp/pure-ftpd/files/pure-ftpd.rc6 b/net-ftp/pure-ftpd/files/pure-ftpd.rc6
index 3876705c9a47..c1185b321eb2 100644
--- a/net-ftp/pure-ftpd/files/pure-ftpd.rc6
+++ b/net-ftp/pure-ftpd/files/pure-ftpd.rc6
@@ -17,7 +17,7 @@ checkconfig() {
start() {
checkconfig || return 1
ebegin "Starting Pure-FTPd"
- start-stop-daemon --start --quiet --exec /usr/sbin/pure-ftpd $SERVER $MAX_CONN $MAX_CONN_IP $DAEMON $DISK_FULL $USE_NAT $AUTH $MISC_OTHER
+ /usr/sbin/pure-ftpd $SERVER $MAX_CONN $MAX_CONN_IP $DAEMON $DISK_FULL $USE_NAT $AUTH $MISC_OTHER
eend $?
}