X-Git-Url: https://git.madduck.net/etc/ssh.git/blobdiff_plain/10ea56e4561fde4b9805d343093993ab52350f7a..6e8a62ff9f2166db66b5fa39dd0d0da28255c852:/.ssh/Makefile diff --git a/.ssh/Makefile b/.ssh/Makefile index fcd46f6..56a0aa4 100644 --- a/.ssh/Makefile +++ b/.ssh/Makefile @@ -5,16 +5,16 @@ all: known_hosts authorized_keys config known_hosts: $(wildcard known_hosts.d/*) touch $@ for f in $^; do \ - echo; \ echo "### from $$f:"; \ + echo; \ cat $$f; \ done > $@ authorized_keys: $(wildcard authorized_keys.d/*) touch $@ for f in $^; do \ - echo; \ echo "### from $$f:"; \ + echo; \ cat $$f; \ done > $@ @@ -28,4 +28,11 @@ config: config.in -e 's,^(.+ControlPath ~/.var/ssh/ssh_control_)%l_(.+),\1\2,' \ $@ \ ;; \ + (3.9*) \ + sed -ri -e 's,^.+\bExitOnForwardFailure\b.+$$,##UNSUPPORTED##&,' \ + -e 's,^.+\bMACs\b.+$$,##UNSUPPORTED##&,' \ + -e 's,^.+\bHashKnownHosts\b.+$$,##UNSUPPORTED##&,' \ + -e 's,^.+\bControl(Master|Path)\b.+$$,##UNSUPPORTED##&,' \ + $@ \ + ;; \ esac