mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +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
434 B
Plaintext
16 lines
434 B
Plaintext
--- /usr/ports/distfiles/OpenSSH-1.2/src/usr.bin/ssh/Makefile Mon Oct 25 16:27:26 1999
|
|
+++ Makefile Mon Nov 29 01:07:28 1999
|
|
@@ -1,8 +1,12 @@
|
|
# $OpenBSD: Makefile,v 1.5 1999/10/25 20:27:26 markus Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
+.include "Makefile.inc"
|
|
|
|
SUBDIR= lib ssh sshd ssh-add ssh-keygen ssh-agent scp
|
|
+.if ${PAM} == yes
|
|
+SUBDIR+= pam_ssh
|
|
+.endif
|
|
|
|
distribution:
|
|
install -C -o root -g wheel -m 0644 ${.CURDIR}/ssh_config \
|