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,ProxyJump ([-.[:alnum:]]+),ProxyCommand ssh \1 nc -q0 %h %p,' $@ \
35 sed -ri -e 's,^.+\bCanonical.+$$,##UNSUPPORTED##&,' \
36 -e 's,^.+\bIgnoreUnknown\b.+$$,##UNSUPPORTED##&,' \
37 -e 's,^.+\bUpdateHostKeys\b.+$$,##UNSUPPORTED##&,' \
38 -e 's,^Match host ,Host ,' \
40 sed -ri -e 's,ProxyJump ([-.[:alnum:]]+),ProxyCommand ssh \1 nc -q0 %h %p,' $@ \
43 sed -ri -e 's,^.+\bControlPersist\b.+$$,##UNSUPPORTED##&,' \
44 -e 's,^.+\bIPQoS\b.+$$,##UNSUPPORTED##&,' \
45 -e 's,^.+\bCanonical.+$$,##UNSUPPORTED##&,' \
49 sed -ri -e 's,^.+\bVisualHostKey\b.+$$,##UNSUPPORTED##&,' \
50 -e 's,^.+\bControlPersist\b.+$$,##UNSUPPORTED##&,' \
51 -e 's,^.+\bIPQoS\b.+$$,##UNSUPPORTED##&,' \
52 -e 's,^.+\bCanonical.+$$,##UNSUPPORTED##&,' \
56 sed -ri -e 's,^.+\bExitOnForwardFailure\b.+$$,##UNSUPPORTED##&,' \
57 -e 's,^.+\bMACs\b.+$$,##UNSUPPORTED##&,' \
58 -e 's,^(.+ControlPath ~/.var/ssh/ssh_control_)%l_(.+),\1\2,' \
59 -e 's,^.+\bVisualHostKey\b.+$$,##UNSUPPORTED##&,' \
60 -e 's,^.+\bControlPersist\b.+$$,##UNSUPPORTED##&,' \
61 -e 's,^.+\bIPQoS\b.+$$,##UNSUPPORTED##&,' \
62 -e 's,^.+\bCanonical.+$$,##UNSUPPORTED##&,' \
66 sed -ri -e 's,^.+\bExitOnForwardFailure\b.+$$,##UNSUPPORTED##&,' \
67 -e 's,^.+\bMACs\b.+$$,##UNSUPPORTED##&,' \
68 -e 's,^.+\bHashKnownHosts\b.+$$,##UNSUPPORTED##&,' \
69 -e 's,^.+\bControl(Master|Path|Persist)\b.+$$,##UNSUPPORTED##&,' \
70 -e 's,^.+\bIPQoS\b.+$$,##UNSUPPORTED##&,' \
71 -e 's,^.+\bCanonical.+$$,##UNSUPPORTED##&,' \
75 case "$$HOSTNAME" in \
77 sed -i -re '/^Host fishbowl/,/^[[:space:]]*ProxyCommand/s/ProxyCommand.*/Host localhost/' $@; \