diff options
author | sumikawa <sumikawa@FreeBSD.org> | 2002-02-21 17:40:58 +0000 |
---|---|---|
committer | sumikawa <sumikawa@FreeBSD.org> | 2002-02-21 17:40:58 +0000 |
commit | cddc5cd3f1ebafad0b6c1940084015822f488940 (patch) | |
tree | 616c95b05a2ae128ad6676f9278327a37738d696 /security/fsh | |
parent | 9143fc4545bf15c15029687678a87a8c7477ae16 (diff) | |
download | FreeBSD-ports-cddc5cd3f1ebafad0b6c1940084015822f488940.zip FreeBSD-ports-cddc5cd3f1ebafad0b6c1940084015822f488940.tar.gz |
fsh -- Fast remote command execution
The problem: logging in to a remote system with a cryptographic
solution such as lsh or ssh takes time, due to the computationally
expensive key exchanges that occur when the connection is
established. It is common to trigger a lot of remote logins while
using remote CVS, which makes it painfully slow compared to having the
repository locally.
The solution: reuse the secure tunnel once it has been
established. fsh is a drop-in rsh-compatible replacement for ssh that
automatically resuses ssh tunnels.
WWW: http://www.lysator.liu.se/fsh/
Diffstat (limited to 'security/fsh')
-rw-r--r-- | security/fsh/Makefile | 18 | ||||
-rw-r--r-- | security/fsh/distinfo | 1 | ||||
-rw-r--r-- | security/fsh/pkg-comment | 1 | ||||
-rw-r--r-- | security/fsh/pkg-descr | 14 | ||||
-rw-r--r-- | security/fsh/pkg-plist | 14 |
5 files changed, 48 insertions, 0 deletions
diff --git a/security/fsh/Makefile b/security/fsh/Makefile new file mode 100644 index 0000000..aea6412 --- /dev/null +++ b/security/fsh/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: fsh +# Date created: Thu Jan 24 03:37:54 JST 2002 +# Whom: sumikawa +# +# $FreeBSD$ + +PORTNAME= fsh +PORTVERSION= 1.2 +CATEGORIES= security +MASTER_SITES= http://www.lysator.liu.se/fsh/ + +MAINTAINER= sumikawa@FreeBSD.org + +RUN_DEPENDS= python:${PORTSDIR}/lang/python + +GNU_CONFIGURE= yes + +.include <bsd.port.mk> diff --git a/security/fsh/distinfo b/security/fsh/distinfo new file mode 100644 index 0000000..a8de081 --- /dev/null +++ b/security/fsh/distinfo @@ -0,0 +1 @@ +MD5 (fsh-1.2.tar.gz) = 74d7fc65044d1c9c27c6e9edbbde9c68 diff --git a/security/fsh/pkg-comment b/security/fsh/pkg-comment new file mode 100644 index 0000000..142d938 --- /dev/null +++ b/security/fsh/pkg-comment @@ -0,0 +1 @@ +Fast remote command execution diff --git a/security/fsh/pkg-descr b/security/fsh/pkg-descr new file mode 100644 index 0000000..723a977 --- /dev/null +++ b/security/fsh/pkg-descr @@ -0,0 +1,14 @@ +fsh -- Fast remote command execution + +The problem: logging in to a remote system with a cryptographic +solution such as lsh or ssh takes time, due to the computationally +expensive key exchanges that occur when the connection is +established. It is common to trigger a lot of remote logins while +using remote CVS, which makes it painfully slow compared to having the +repository locally. + +The solution: reuse the secure tunnel once it has been +established. fsh is a drop-in rsh-compatible replacement for ssh that +automatically resuses ssh tunnels. + +WWW: http://www.lysator.liu.se/fsh/ diff --git a/security/fsh/pkg-plist b/security/fsh/pkg-plist new file mode 100644 index 0000000..ddcc9cf --- /dev/null +++ b/security/fsh/pkg-plist @@ -0,0 +1,14 @@ +bin/fsh +bin/fshd +bin/in.fshd +libexec/fcpwrap +share/fsh/fsh.py +share/fsh/fshcompat.py +share/fsh/fshconfig.py +share/fsh/fshd.py +share/fsh/fshlib.py +share/fsh/fshversion.py +share/fsh/infshd.py +@unexec install-info --delete %D/info/fsh.info %D/info/dir +info/fsh.info +@exec install-info --section="Shells and utilities" --entry="* FSH: (fsh). fast remote command execution." %D/info/lsh.info %D/info/dir |