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>
This commit is contained in:
parent
13cc61c689
commit
5e85f2ad57
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=42774
6 changed files with 44 additions and 0 deletions
|
@ -151,6 +151,7 @@
|
|||
SUBDIR += snort
|
||||
SUBDIR += srm
|
||||
SUBDIR += ssh
|
||||
SUBDIR += ssh-multiadd
|
||||
SUBDIR += ssh2
|
||||
SUBDIR += sslproxy
|
||||
SUBDIR += sslwrap
|
||||
|
|
27
security/ssh-multiadd/Makefile
Normal file
27
security/ssh-multiadd/Makefile
Normal file
|
@ -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>
|
1
security/ssh-multiadd/distinfo
Normal file
1
security/ssh-multiadd/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (ssh-multiadd-1.3.tar.gz) = 1e7ece347bf7ff28e50b2b75f5c35799
|
1
security/ssh-multiadd/pkg-comment
Normal file
1
security/ssh-multiadd/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
Tool to add multiple ssh keys to the authentication agent
|
13
security/ssh-multiadd/pkg-descr
Normal file
13
security/ssh-multiadd/pkg-descr
Normal file
|
@ -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
|
1
security/ssh-multiadd/pkg-plist
Normal file
1
security/ssh-multiadd/pkg-plist
Normal file
|
@ -0,0 +1 @@
|
|||
bin/ssh-multiadd
|
Loading…
Reference in a new issue