Initial import of twoftpd-1.13.
Twoftpd is an FTP server that strives to be secure, simple, and efficient. None of the commands can cause execution of other programs, and the normal model of execution does a chroot to the logged in user's directory immediately after authentication. PR: 30565 Submitted by: Gea-Suan Lin <gslin@infomath.math.nctu.edu.tw>
This commit is contained in:
parent
6baece6a3a
commit
f1489235cc
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=47872
6 changed files with 42 additions and 0 deletions
|
@ -52,6 +52,7 @@
|
||||||
SUBDIR += ruby-curl
|
SUBDIR += ruby-curl
|
||||||
SUBDIR += sftp
|
SUBDIR += sftp
|
||||||
SUBDIR += spegla
|
SUBDIR += spegla
|
||||||
|
SUBDIR += twoftpd
|
||||||
SUBDIR += vcheck
|
SUBDIR += vcheck
|
||||||
SUBDIR += vsftpd
|
SUBDIR += vsftpd
|
||||||
SUBDIR += wget
|
SUBDIR += wget
|
||||||
|
|
22
ftp/twoftpd/Makefile
Normal file
22
ftp/twoftpd/Makefile
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
# New ports collection makefile for: twoftpd
|
||||||
|
# Date created: 14 September 2001
|
||||||
|
# Whom: Gea-Suan Lin (gslin@ccca.nctu.edu.tw)
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
PORTNAME= twoftpd
|
||||||
|
PORTVERSION= 1.13
|
||||||
|
CATEGORIES= ftp
|
||||||
|
MASTER_SITES= http://untroubled.org/twoftpd/
|
||||||
|
|
||||||
|
MAINTAINER= gslin@ccca.nctu.edu.tw
|
||||||
|
|
||||||
|
BIN= twoftpd-anon twoftpd-anon-conf twoftpd-auth twoftpd-conf twoftpd-xfer
|
||||||
|
|
||||||
|
do-install:
|
||||||
|
.for FILE in ${BIN}
|
||||||
|
@${INSTALL_PROGRAM} ${WRKSRC}/${FILE} ${PREFIX}/sbin
|
||||||
|
.endfor
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
1
ftp/twoftpd/distinfo
Normal file
1
ftp/twoftpd/distinfo
Normal file
|
@ -0,0 +1 @@
|
||||||
|
MD5 (twoftpd-1.13.tar.gz) = 6f1ce251c1b996478ade79bc81f3deb4
|
1
ftp/twoftpd/pkg-comment
Normal file
1
ftp/twoftpd/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
||||||
|
A simple, secure, efficient FTP server
|
12
ftp/twoftpd/pkg-descr
Normal file
12
ftp/twoftpd/pkg-descr
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
Twoftpd is an FTP server that strives to be secure, simple, and efficient.
|
||||||
|
None of the commands can cause execution of other programs, and the normal
|
||||||
|
model of execution does a chroot to the logged in user's directory
|
||||||
|
immediately after authentication. The name "twoftpd" comes from
|
||||||
|
the fact that there are two parts to the server: an authenticating front
|
||||||
|
end, which contains no file or data transfer code, and one of two back ends,
|
||||||
|
which contain all the data transfer code.
|
||||||
|
|
||||||
|
WWW: http://untroubled.org/twoftpd/
|
||||||
|
|
||||||
|
- Gea-Suan Lin
|
||||||
|
gslin@ccca.nctu.edu.tw
|
5
ftp/twoftpd/pkg-plist
Normal file
5
ftp/twoftpd/pkg-plist
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
sbin/twoftpd-anon
|
||||||
|
sbin/twoftpd-anon-conf
|
||||||
|
sbin/twoftpd-auth
|
||||||
|
sbin/twoftpd-conf
|
||||||
|
sbin/twoftpd-xfer
|
Loading…
Reference in a new issue