diff options
author | jgh <jgh@FreeBSD.org> | 2012-02-12 14:26:04 +0800 |
---|---|---|
committer | jgh <jgh@FreeBSD.org> | 2012-02-12 14:26:04 +0800 |
commit | ecafb9725e518aad505502dd2d005ef612531c94 (patch) | |
tree | d297cc2f37a6d1f0616d8d7426045813e0ab23a4 /security | |
parent | 8d69c100b8033c3ff3abed08ccb6714d10aca203 (diff) | |
download | freebsd-ports-gnome-ecafb9725e518aad505502dd2d005ef612531c94.tar.gz freebsd-ports-gnome-ecafb9725e518aad505502dd2d005ef612531c94.tar.zst freebsd-ports-gnome-ecafb9725e518aad505502dd2d005ef612531c94.zip |
Add new port (security/sshpass)
Sshpass is a tool for non-interactively performing password authentication
with SSH's so called "interactive keyboard password authentication".
Most user should use SSH's more secure public key authentication instead.
WWW: http://sourceforge.net/projects/sshpass/
PR: ports/164775
Submitted by: Hung-Yi Chen <gaod at hychen.org>
Diffstat (limited to 'security')
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/sshpass/Makefile | 23 | ||||
-rw-r--r-- | security/sshpass/distinfo | 2 | ||||
-rw-r--r-- | security/sshpass/pkg-descr | 5 |
4 files changed, 31 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index e0e27bae0458..2cb2a2d9c4f7 100644 --- a/security/Makefile +++ b/security/Makefile @@ -853,6 +853,7 @@ SUBDIR += sshguard-ipfw SUBDIR += sshguard-pf SUBDIR += sshit + SUBDIR += sshpass SUBDIR += ssl-admin SUBDIR += sslproxy SUBDIR += sslscan diff --git a/security/sshpass/Makefile b/security/sshpass/Makefile new file mode 100644 index 000000000000..1e9774d783b2 --- /dev/null +++ b/security/sshpass/Makefile @@ -0,0 +1,23 @@ +# New ports collection makefile for: sshpass +# Date created: 2012-02-04 +# Whom: Hung-Yi Chen <gaod@hychen.org> +# +# $FreeBSD$ +# + +PORTNAME= sshpass +PORTVERSION= 1.05 +CATEGORIES= sysutils +MASTER_SITES= SF/${PORTNAME}/sshpass/${PORTVERSION} + +MAINTAINER= gaod@hychen.org +COMMENT= A non-interactive ssh password auth tool + +LICENSE= GPLv2 + +GNU_CONFIGURE= yes + +PLIST_FILES= bin/sshpass +MAN1= sshpass.1 + +.include <bsd.port.mk> diff --git a/security/sshpass/distinfo b/security/sshpass/distinfo new file mode 100644 index 000000000000..5449f4187041 --- /dev/null +++ b/security/sshpass/distinfo @@ -0,0 +1,2 @@ +SHA256 (sshpass-1.05.tar.gz) = c3f78752a68a0c3f62efb3332cceea0c8a1f04f7cf6b46e00ec0c3000bc8483e +SIZE (sshpass-1.05.tar.gz) = 98362 diff --git a/security/sshpass/pkg-descr b/security/sshpass/pkg-descr new file mode 100644 index 000000000000..23e2d16935d1 --- /dev/null +++ b/security/sshpass/pkg-descr @@ -0,0 +1,5 @@ +Sshpass is a tool for non-interactively performing password authentication +with SSH's so called "interactive keyboard password authentication". +Most user should use SSH's more secure public key authentication instead. + +WWW: http://sourceforge.net/projects/sshpass/ |