mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-11 07:22:22 +00:00
Update to 1.0.2
PR: ports/69343 Submitted by: maintainer
This commit is contained in:
parent
c8da61e74a
commit
de62a04018
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=114344
@ -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/
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
;;
|
||||
|
Loading…
Reference in New Issue
Block a user