1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Add pam_helper, a small utility which allows non-PAM or non-setuid

applications to make use of PAM's authentication services.
This commit is contained in:
Joe Marcus Clarke 2008-08-09 07:53:16 +00:00
parent 06949ff26a
commit 55278cda1b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=218260
4 changed files with 29 additions and 0 deletions

View File

@ -528,6 +528,7 @@
SUBDIR += pam_authsrv
SUBDIR += pam_bsdbioapi
SUBDIR += pam_fprint
SUBDIR += pam_helper
SUBDIR += pam_krb5
SUBDIR += pam_ldap
SUBDIR += pam_mkhomedir

View File

@ -0,0 +1,20 @@
# New ports collection makefile for: pam_helper
# Date created: 09 August 2008
# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= pam_helper
PORTVERSION= 1.0
CATEGORIES= security sysutils
MASTER_SITES= http://www.marcuscom.com/pam_helper/
MAINTAINER= marcus@FreeBSD.org
COMMENT= Authenticate applications requiring PAM services
USE_BZIP2= yes
PLIST_FILES= bin/pam_helper
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (pam_helper-1.0.tar.bz2) = 2891b9995a44e9aebf052859f0203de7
SHA256 (pam_helper-1.0.tar.bz2) = 550b96290f73570db64daa7c82f78122b4a477c6f5fd28129b6d83799e920ba7
SIZE (pam_helper-1.0.tar.bz2) = 2221

View File

@ -0,0 +1,5 @@
Pam_helper is a small utility which allows non-PAM, or non-setuid
applications to make use of PAM's authentication services. It was mainly
created to allow gnome-screensaver to make use of PAM, but any application
could use it. It accepts two arguments, the PAM service name, and a
username. It reads the user's password from stdin.