diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2002-05-23 19:24:32 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2002-05-23 19:24:32 +0000 |
commit | f9af44845483e4aa0ad9f50a4b683b306722d93e (patch) | |
tree | 1fa2dfb1a9ba835c50cc1a79bec5e90bc6829c65 /usr.bin/ssh/ssh-keysign | |
parent | 0c6ba561e82f6676f56adebb7f07e20a76a24207 (diff) |
add /usr/libexec/ssh-keysign: a setuid helper program for hostbased authentication
in protocol v2 (needs to access the hostkeys).
Diffstat (limited to 'usr.bin/ssh/ssh-keysign')
-rw-r--r-- | usr.bin/ssh/ssh-keysign/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/usr.bin/ssh/ssh-keysign/Makefile b/usr.bin/ssh/ssh-keysign/Makefile new file mode 100644 index 00000000000..70edbeddaff --- /dev/null +++ b/usr.bin/ssh/ssh-keysign/Makefile @@ -0,0 +1,18 @@ +# $OpenBSD: Makefile,v 1.1 2002/05/23 19:24:31 markus Exp $ + +.PATH: ${.CURDIR}/.. + +PROG= ssh-keysign +BINOWN= root + +BINMODE?=4555 + +BINDIR= /usr/libexec +NOMAN=yes + +SRCS= ssh-keysign.c + +.include <bsd.prog.mk> + +LDADD+= -lcrypto +DPADD+= ${LIBCRYPTO} |