[Lunar-commits] CVS: moonbase/ftp/vsftpd CONFIGURE, 1.4, 1.5 BUILD,
1.4, 1.5 DETAILS, 1.7, 1.8
Auke Kok
sofar at lunar-linux.org
Tue Jul 6 09:21:53 GMT 2004
Update of /var/cvs/lunar/moonbase/ftp/vsftpd
In directory dbguin.lunar-linux.org:/tmp/cvs-serv7246
Modified Files:
BUILD DETAILS
Added Files:
CONFIGURE
Log Message:
New version which supports TLS/SSL. I added a configure that allows you to switch ssl/pam/tcpwr support on and off. I'm not making optional depends for these since vsftpd doesn't use autoconf.
Index: BUILD
===================================================================
RCS file: /var/cvs/lunar/moonbase/ftp/vsftpd/BUILD,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- BUILD 21 Apr 2003 18:29:29 -0000 1.4
+++ BUILD 6 Jul 2004 09:21:51 -0000 1.5
@@ -1,8 +1,23 @@
(
- if module_installed tcp_wrappers; then
- sedit "s/undef/define/" builddefs.h
+ echo -e "#ifndef VSF_BUILDDEFS_H\n#define VSF_BUILDDEFS_H" > builddefs.h
+ if [ $(get_module_config USE_TCP_WRAPPERS) == "n" ] ; then
+ echo "#undef VSF_BUILD_TCPWRAPPERS" >> builddefs.h
+ else
+ echo "#define VSF_BUILD_TCPWRAPPERS" >> builddefs.h
fi
+ if [ $(get_module_config USE_PAM) == "n" ] ; then
+ echo "#undef VSF_BUILD_PAM" >> builddefs.h
+ else
+ echo "#define VSF_BUILD_PAM" >> builddefs.h
+ fi
+ if [ $(get_module_config USE_SSL) == "n" ] ; then
+ echo "#undef VSF_BUILD_SSL" >> builddefs.h
+ else
+ echo "#define VSF_BUILD_SSL" >> builddefs.h
+ fi
+ echo "#endif /* VSF_BUILDDEFS_H */" >> builddefs.h
+ cat builddefs.h
make CFLAGS="$CFLAGS" &&
prepare_install
Index: DETAILS
===================================================================
RCS file: /var/cvs/lunar/moonbase/ftp/vsftpd/DETAILS,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- DETAILS 27 Apr 2004 07:48:48 -0000 1.7
+++ DETAILS 6 Jul 2004 09:21:51 -0000 1.8
@@ -1,14 +1,13 @@
MODULE=vsftpd
- VERSION=1.2.2
+ VERSION=2.0.1
SOURCE=$MODULE-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION
- SOURCE_URL[0]=ftp://vsftpd.beasts.org/users/cevans/$SOURCE
- SOURCE_VFY[0]=md5:5a38e1c69062e7688fbbdae6d1196de2
+ SOURCE_URL=ftp://vsftpd.beasts.org/users/cevans/$SOURCE
+ SOURCE_VFY=md5:63838791ec8b1375ed154fb2603e52e9
WEB_SITE=http://vsftpd.beasts.org/
ENTERED=20021109
- UPDATED=20040427
- SHORT="vsftpd is a GPL licensed FTP server for UNIX systems, including Linux. It is secure and extremely fast. It is stable."
-
+ UPDATED=20040706
+ SHORT="Secure and fast FTP server"
cat << EOF
If your main requirement from an FTP server is one of the following things then yes, vsftpd is probably the FTP server you are looking for.
@@ -16,18 +15,4 @@
Performance
Stability
-Sites using vsftpd as of November 2002:
- ftp.redhat.com
- ftp.suse.com
- ftp.debian.org
- ftp.gnu.org
- rpmfind.net
- ftp.linux.org.uk
- ftp.gimp.org
- ftp-stud.fht-esslingen.de
- ftp.openbsd.org
- ftp.kde.org
- gd.tuwien.ac.at
- ftp.sunet.se
-
EOF
More information about the Lunar-commits
mailing list