diff options
author | will <will@FreeBSD.org> | 2001-05-20 10:40:30 +0800 |
---|---|---|
committer | will <will@FreeBSD.org> | 2001-05-20 10:40:30 +0800 |
commit | baa3a586d6d2f3c09c472445b2578bc5918edae5 (patch) | |
tree | 058ea485e92950abc5c407a0d2770325089b907e /security | |
parent | 19cf99d69436a4bd604b10048916fe04a80f7359 (diff) | |
download | freebsd-ports-gnome-baa3a586d6d2f3c09c472445b2578bc5918edae5.tar.gz freebsd-ports-gnome-baa3a586d6d2f3c09c472445b2578bc5918edae5.tar.zst freebsd-ports-gnome-baa3a586d6d2f3c09c472445b2578bc5918edae5.zip |
Add ssh-multiadd 1.3, a tool to add multiple ssh keys to the
authentication agent.
PR: 26975
Submitted by: Pete Fritchman <petef@databits.net>
Diffstat (limited to 'security')
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/ssh-multiadd/Makefile | 27 | ||||
-rw-r--r-- | security/ssh-multiadd/distinfo | 1 | ||||
-rw-r--r-- | security/ssh-multiadd/pkg-comment | 1 | ||||
-rw-r--r-- | security/ssh-multiadd/pkg-descr | 13 | ||||
-rw-r--r-- | security/ssh-multiadd/pkg-plist | 1 |
6 files changed, 44 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index 150cf26c3232..d0483df244eb 100644 --- a/security/Makefile +++ b/security/Makefile @@ -151,6 +151,7 @@ SUBDIR += snort SUBDIR += srm SUBDIR += ssh + SUBDIR += ssh-multiadd SUBDIR += ssh2 SUBDIR += sslproxy SUBDIR += sslwrap diff --git a/security/ssh-multiadd/Makefile b/security/ssh-multiadd/Makefile new file mode 100644 index 000000000000..9563618eb7c1 --- /dev/null +++ b/security/ssh-multiadd/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: ssh-multiadd +# Date created: 29 April 2001 +# Whom: Pete Fritchman <petef@databits.net> +# +# $FreeBSD$ +# + +PORTNAME= ssh-multiadd +PORTVERSION= 1.3 +CATEGORIES= security +MASTER_SITES= http://www.azstarnet.com/~donut/programs/ssh-multiadd/ + +MAINTAINER= petef@databits.net + +USE_PYTHON= yes +NO_BUILD= yes +MAN1= ssh-multiadd.1 + +post-patch: + ${PERL} -pi -e 's!/usr/bin/python2!${PYTHON_CMD}!; \ + s!#break!break!' ${WRKSRC}/ssh-multiadd + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/ssh-multiadd ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/ssh-multiadd.1 ${PREFIX}/man/man1 + +.include <bsd.port.mk> diff --git a/security/ssh-multiadd/distinfo b/security/ssh-multiadd/distinfo new file mode 100644 index 000000000000..7d90d52e680e --- /dev/null +++ b/security/ssh-multiadd/distinfo @@ -0,0 +1 @@ +MD5 (ssh-multiadd-1.3.tar.gz) = 1e7ece347bf7ff28e50b2b75f5c35799 diff --git a/security/ssh-multiadd/pkg-comment b/security/ssh-multiadd/pkg-comment new file mode 100644 index 000000000000..f3aa878afc4a --- /dev/null +++ b/security/ssh-multiadd/pkg-comment @@ -0,0 +1 @@ +Tool to add multiple ssh keys to the authentication agent diff --git a/security/ssh-multiadd/pkg-descr b/security/ssh-multiadd/pkg-descr new file mode 100644 index 000000000000..d1b64e009428 --- /dev/null +++ b/security/ssh-multiadd/pkg-descr @@ -0,0 +1,13 @@ +ssh-multiadd adds multiple ssh keys to the ssh authentication agent. +These may use the same passphrase. When run without arguments, it +adds $HOME/.ssh/identity and $HOME/.ssh/id_dsa. Alternative file +names can be given on the command line or in the configuration +file. It uses ssh-askpass if necessary. Unlike ssh-add, if any of +the keys use the same passphrase, you will only need to enter each +unique passphrase once, and keys that are already added will not +be prompted for again. + +WWW: http://www.azstarnet.com/~donut/programs/index_s.html#ssh-multiadd + +- Pete +petef@databits.net diff --git a/security/ssh-multiadd/pkg-plist b/security/ssh-multiadd/pkg-plist new file mode 100644 index 000000000000..ba11db9e1b5a --- /dev/null +++ b/security/ssh-multiadd/pkg-plist @@ -0,0 +1 @@ +bin/ssh-multiadd |