sftp is an ftp replacement that runs over an ssh tunnel. Two programs
are included - sftp and sftpserv. When sftp is run and a host is connected to (either by running 'sftp remotehost' or 'open remotehost' from the sftp prompt), an ssh connection is initiated to the remote host, and sftpserv is run. So, sftpserv must be in your path on the remote host. Note that since sftpserv is run from ssh, no root privileges are necessary.
This commit is contained in:
parent
57ea3d8a86
commit
ad92635a91
5 changed files with 37 additions and 0 deletions
20
net/sftp/Makefile
Normal file
20
net/sftp/Makefile
Normal file
|
@ -0,0 +1,20 @@
|
|||
# $NetBSD: Makefile,v 1.1.1.1 1999/12/21 22:37:51 hubertf Exp $
|
||||
#
|
||||
|
||||
DISTNAME= sftp-0.4
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= ftp://ftp.xbill.org/pub/sftp/
|
||||
|
||||
MAINTAINER= hubertf@netbsd.org
|
||||
HOMEPAGE= http://www.xbill.org/sftp/
|
||||
|
||||
GNU_CONFIGURE= YES
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/rsftp ${PREFIX}/bin
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/sftp ${PREFIX}/bin
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/sftpserv ${PREFIX}/bin
|
||||
${INSTALL_MAN} ${WRKSRC}/sftp.1 ${PREFIX}/man/man1/sftp.1
|
||||
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/README.sftp
|
||||
|
||||
.include "../../mk/bsd.pkg.mk"
|
3
net/sftp/files/md5
Normal file
3
net/sftp/files/md5
Normal file
|
@ -0,0 +1,3 @@
|
|||
$NetBSD: md5,v 1.1.1.1 1999/12/21 22:37:51 hubertf Exp $
|
||||
|
||||
MD5 (sftp-0.4.tar.gz) = 6165f7264ee50372cba6da542e09f937
|
1
net/sftp/pkg/COMMENT
Normal file
1
net/sftp/pkg/COMMENT
Normal file
|
@ -0,0 +1 @@
|
|||
Ftp replacement that runs over an ssh tunnel
|
7
net/sftp/pkg/DESCR
Normal file
7
net/sftp/pkg/DESCR
Normal file
|
@ -0,0 +1,7 @@
|
|||
sftp is an ftp replacement that runs over an ssh tunnel. Two programs
|
||||
are included - sftp and sftpserv. When sftp is run and a host is
|
||||
connected to (either by running 'sftp remotehost' or 'open remotehost'
|
||||
from the sftp prompt), an ssh connection is initiated to the remote
|
||||
host, and sftpserv is run. So, sftpserv must be in your path on
|
||||
the remote host. Note that since sftpserv is run from ssh, no root
|
||||
privileges are necessary.
|
6
net/sftp/pkg/PLIST
Normal file
6
net/sftp/pkg/PLIST
Normal file
|
@ -0,0 +1,6 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 1999/12/21 22:37:51 hubertf Exp $
|
||||
bin/rsftp
|
||||
bin/sftp
|
||||
bin/sftpserv
|
||||
man/man1/sftp.1
|
||||
share/doc/README.sftp
|
Loading…
Reference in a new issue