From: Peter Müller Date: Mon, 10 Sep 2018 14:29:09 +0000 (+0200) Subject: use custom SSH client configuration in LFS file X-Git-Tag: v2.21-core124~28 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cc3e41cb8b0b7d713ce15a7177d1bbda7778b2ca;p=ipfire-2.x.git use custom SSH client configuration in LFS file Include OpenSSH client configuration file during build. Signed-off-by: Peter Müller Signed-off-by: Michael Tremer --- diff --git a/lfs/openssh b/lfs/openssh index a88b2d1261..0e6acc2278 100644 --- a/lfs/openssh +++ b/lfs/openssh @@ -100,5 +100,10 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) -e 's|^#\?HostKey /etc/ssh/ssh_host_ed25519_key$$||' \ -e 's|^#\?HostKey /etc/ssh/ssh_host_rsa_key$$|HostKey /etc/ssh/ssh_host_ecdsa_key\nHostKey /etc/ssh/ssh_host_ed25519_key\nHostKey /etc/ssh/ssh_host_rsa_key|' \ /etc/ssh/sshd_config + + # install custom OpenSSH client configuration + install -v -m 644 $(DIR_SRC)/config/ssh/ssh_config \ + /etc/ssh/ssh_config + @rm -rf $(DIR_APP) @$(POSTBUILD)