From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: Re: [PATCH v2 2/2] use custom SSH client configuration in LFS file Date: Mon, 10 Sep 2018 16:37:42 +0100 Message-ID: In-Reply-To: <20180910142909.5725-2-peter.mueller@link38.eu> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6577425893923263598==" List-Id: --===============6577425893923263598== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Hello, did you notice that this file is excluded from being updated on existing installations? How do we handle any custom changes from users here? I merged this for new installations already. -Michael On Mon, 2018-09-10 at 16:29 +0200, Peter Müller wrote: > Include OpenSSH client configuration file during build. > > Signed-off-by: Peter Müller > --- > lfs/openssh | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/lfs/openssh b/lfs/openssh > index a88b2d126..0e6acc227 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) --===============6577425893923263598==--