All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
1 all: known_hosts authorized_keys config
5 known_hosts: $(wildcard known_hosts.d/*)
8 echo "### from $$f:"; \
13 authorized_keys: $(wildcard authorized_keys.d/*)
16 echo "### from $$f:"; \
21 ifeq ($(strip $(wildcard config.local)),)
22 LOCAL_CONFIG=/dev/null
24 LOCAL_CONFIG=config.local
27 SSH_VERSION = $(shell ssh -V 2>&1)
28 config: $(LOCAL_CONFIG) config.in
30 case "$(SSH_VERSION)" in \
32 sed -ri -e 's,^.+\bCanonical.+$$,##UNSUPPORTED##&,' \
35 (OpenSSH_5.[012345]*) \
36 sed -ri -e 's,^.+\bControlPersist\b.+$$,##UNSUPPORTED##&,' \
37 -e 's,^.+\bIPQoS\b.+$$,##UNSUPPORTED##&,' \
38 -e 's,^.+\bCanonical.+$$,##UNSUPPORTED##&,' \
42 sed -ri -e 's,^.+\bVisualHostKey\b.+$$,##UNSUPPORTED##&,' \
43 -e 's,^.+\bControlPersist\b.+$$,##UNSUPPORTED##&,' \
44 -e 's,^.+\bIPQoS\b.+$$,##UNSUPPORTED##&,' \
45 -e 's,^.+\bCanonical.+$$,##UNSUPPORTED##&,' \
49 sed -ri -e 's,^.+\bExitOnForwardFailure\b.+$$,##UNSUPPORTED##&,' \
50 -e 's,^.+\bMACs\b.+$$,##UNSUPPORTED##&,' \
51 -e 's,^(.+ControlPath ~/.var/ssh/ssh_control_)%l_(.+),\1\2,' \
52 -e 's,^.+\bVisualHostKey\b.+$$,##UNSUPPORTED##&,' \
53 -e 's,^.+\bControlPersist\b.+$$,##UNSUPPORTED##&,' \
54 -e 's,^.+\bIPQoS\b.+$$,##UNSUPPORTED##&,' \
55 -e 's,^.+\bCanonical.+$$,##UNSUPPORTED##&,' \
59 sed -ri -e 's,^.+\bExitOnForwardFailure\b.+$$,##UNSUPPORTED##&,' \
60 -e 's,^.+\bMACs\b.+$$,##UNSUPPORTED##&,' \
61 -e 's,^.+\bHashKnownHosts\b.+$$,##UNSUPPORTED##&,' \
62 -e 's,^.+\bControl(Master|Path|Persist)\b.+$$,##UNSUPPORTED##&,' \
63 -e 's,^.+\bIPQoS\b.+$$,##UNSUPPORTED##&,' \
64 -e 's,^.+\bCanonical.+$$,##UNSUPPORTED##&,' \