a1e0ba2e59
sshfp is a small utility that generates RFC4255 SSHFP DNS records based on the public keys stored in a known_hosts file or obtained by using ssh-keyscan. If the nameserver of the domain allows zone tranfers (AXFR), an entire domain can be processed for all its A records. These can then be easilly added to a zone, and then secured by DNSSEC.
23 lines
505 B
Text
23 lines
505 B
Text
$NetBSD: patch-aa,v 1.1.1.1 2008/07/31 10:21:21 agc Exp $
|
|
|
|
--- Makefile 2008/07/31 09:38:52 1.1
|
|
+++ Makefile 2008/07/31 09:37:43
|
|
@@ -4,8 +4,8 @@
|
|
#
|
|
#
|
|
|
|
-BIN = $(DESTDIR)/usr/bin
|
|
-MAN = $(DESTDIR)/usr/share/man/man1
|
|
+BIN = $(DESTDIR)${PREFIX}/bin
|
|
+MAN = $(DESTDIR)${PREFIX}/${PKGMANDIR}/man1
|
|
|
|
all: man-page
|
|
|
|
@@ -14,7 +14,6 @@
|
|
install -m 0755 sshfp $(BIN)
|
|
install -d 0755 $(MAN)
|
|
install -m 0644 sshfp.1 $(MAN)
|
|
- gzip $(MAN)/sshfp.1
|
|
|
|
man-page:
|
|
nroff -man sshfp.1 > sshfp.1.txt
|