diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-07-21 12:48:22 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-07-21 12:48:22 +0000 |
commit | de62a040183efa391c5aeeaa89dc6496fbaccc24 (patch) | |
tree | 3cb2023450065fb21e640909f27f90112af9f665 /ftp/bsdftpd-ssl | |
parent | c8da61e74a8e606d07115c5d23e3b9313976c43b (diff) | |
download | ports-de62a040183efa391c5aeeaa89dc6496fbaccc24.tar.gz ports-de62a040183efa391c5aeeaa89dc6496fbaccc24.zip |
Notes
Diffstat (limited to 'ftp/bsdftpd-ssl')
-rw-r--r-- | ftp/bsdftpd-ssl/Makefile | 2 | ||||
-rw-r--r-- | ftp/bsdftpd-ssl/distinfo | 3 | ||||
-rw-r--r-- | ftp/bsdftpd-ssl/files/bsdftpd-ssl.sh | 7 |
3 files changed, 9 insertions, 3 deletions
diff --git a/ftp/bsdftpd-ssl/Makefile b/ftp/bsdftpd-ssl/Makefile index 6c54184ff3b2..70f1a62bd903 100644 --- a/ftp/bsdftpd-ssl/Makefile +++ b/ftp/bsdftpd-ssl/Makefile @@ -6,7 +6,7 @@ # PORTNAME= bsdftpd-ssl -PORTVERSION= 1.0.1 +PORTVERSION= 1.0.2 PORTREVISION= 0 CATEGORIES= ftp MASTER_SITES= http://bsdftpd-ssl.sc.ru/files/bsdftpd-ssl/archive/1.0/src/ diff --git a/ftp/bsdftpd-ssl/distinfo b/ftp/bsdftpd-ssl/distinfo index ca70612e5ab9..8e6e713641b2 100644 --- a/ftp/bsdftpd-ssl/distinfo +++ b/ftp/bsdftpd-ssl/distinfo @@ -1 +1,2 @@ -MD5 (bsdftpd-ssl-1.0.1.tar.gz) = fe77f5a8631c01aa85f969355fba3b69 +MD5 (bsdftpd-ssl-1.0.2.tar.gz) = 987d8645a254ec3695d21054a6cad91f +SIZE (bsdftpd-ssl-1.0.2.tar.gz) = 334010 diff --git a/ftp/bsdftpd-ssl/files/bsdftpd-ssl.sh b/ftp/bsdftpd-ssl/files/bsdftpd-ssl.sh index 7ac97ef97405..a5f27ddfca2f 100644 --- a/ftp/bsdftpd-ssl/files/bsdftpd-ssl.sh +++ b/ftp/bsdftpd-ssl/files/bsdftpd-ssl.sh @@ -1,5 +1,10 @@ #!/bin/sh +# Add extra options here for the BSDftpd-ssl FTP server. +# See ftpd-ssl(8) for more details. +EXTRAOPTS="-l" + +# You shouldn't edit anything below... if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then echo "$0: Cannot determine the PREFIX" >&2 exit 1 @@ -8,7 +13,7 @@ fi case "$1" in start) if [ -x ${PREFIX}/libexec/ftpd ]; then - ${PREFIX}/libexec/ftpd -D -l -p /var/run/ftpd.pid > /dev/null + ${PREFIX}/libexec/ftpd -D -p /var/run/ftpd.pid ${EXTRAOPTS} > /dev/null echo -n ' BSDftpd-ssl' fi ;; |