X-Git-Url: https://git.madduck.net/etc/ssh.git/blobdiff_plain/9a8d342f1e31da934d02d4e16784e8aa6119093a..e2a818417917b2c2b66e0e5aeac6858ac4e7688f:/.ssh/Makefile diff --git a/.ssh/Makefile b/.ssh/Makefile index 6de2f30..8010373 100644 --- a/.ssh/Makefile +++ b/.ssh/Makefile @@ -5,17 +5,17 @@ all: known_hosts authorized_keys config known_hosts: $(wildcard known_hosts.d/*) touch $@ for f in $^; do \ - echo; \ echo "### from $$f:"; \ cat $$f; \ + echo; \ done > $@ authorized_keys: $(wildcard authorized_keys.d/*) touch $@ for f in $^; do \ - echo; \ echo "### from $$f:"; \ cat $$f; \ + echo; \ done > $@ SSH_VERSION = $(shell ssh -V 2>&1)