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 SSH_VERSION = $(shell ssh -V 2>&1)
24 case "$(SSH_VERSION)" in \
25 (OpenSSH_5.[012345]*) \
26 sed -ri -e 's,^.+\bControlPersist\b.+$$,##UNSUPPORTED##&,' \
27 -e 's,^.+\bIPQoS\b.+$$,##UNSUPPORTED##&,' \
31 sed -ri -e 's,^.+\bVisualHostKey\b.+$$,##UNSUPPORTED##&,' \
32 -e 's,^.+\bControlPersist\b.+$$,##UNSUPPORTED##&,' \
33 -e 's,^.+\bIPQoS\b.+$$,##UNSUPPORTED##&,' \
37 sed -ri -e 's,^.+\bExitOnForwardFailure\b.+$$,##UNSUPPORTED##&,' \
38 -e 's,^.+\bMACs\b.+$$,##UNSUPPORTED##&,' \
39 -e 's,^(.+ControlPath ~/.var/ssh/ssh_control_)%l_(.+),\1\2,' \
40 -e 's,^.+\bVisualHostKey\b.+$$,##UNSUPPORTED##&,' \
41 -e 's,^.+\bControlPersist\b.+$$,##UNSUPPORTED##&,' \
42 -e 's,^.+\bIPQoS\b.+$$,##UNSUPPORTED##&,' \
46 sed -ri -e 's,^.+\bExitOnForwardFailure\b.+$$,##UNSUPPORTED##&,' \
47 -e 's,^.+\bMACs\b.+$$,##UNSUPPORTED##&,' \
48 -e 's,^.+\bHashKnownHosts\b.+$$,##UNSUPPORTED##&,' \
49 -e 's,^.+\bControl(Master|Path|Persist)\b.+$$,##UNSUPPORTED##&,' \
50 -e 's,^.+\bIPQoS\b.+$$,##UNSUPPORTED##&,' \