mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
c52ee5193f
"login auth sufficient pam_ssh.so" to your /etc/pam.conf, and users with a ~/.ssh/identity can login(1) with their SSH key :) PR: 15158 Submitted by: Andrew J. Korty <ajk@waterspout.com> Reviewed by: obrien
16 lines
318 B
Plaintext
16 lines
318 B
Plaintext
# PAM module for SSH
|
|
# $FreeBSD$
|
|
.PATH: ${.CURDIR}/..
|
|
|
|
LIB= pam_ssh
|
|
DESTDIR=
|
|
SHLIB_NAME= pam_ssh.so
|
|
SRCS= log-client.c pam_ssh.c
|
|
CFLAGS+= -Wall
|
|
DPADD+= ${LIBCRYPTO} ${LIBDES} ${LIBUTIL} ${LIBZ} ${LIBGCC_PIC}
|
|
LDADD+= ${CRYPTOLIBS} -lutil -lz -lgcc_pic
|
|
INTERNALLIB= yes
|
|
INTERNALSTATICLIB=yes
|
|
|
|
.include <bsd.lib.mk>
|