From 72d4bb605fa80c0deb6430fd67bbffbc59441158 Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Tue, 11 Jan 2022 10:11:03 -0800 Subject: [PATCH] Enable sftp when using inst.sshd scp in openssh 8.7 will change to use sftp protocol. See https://github.com/openssh/openssh-portable/pull/194 for details. This enables the sshd internal-sftp implementation so that newer scp versions will continue to work as expected. Note that the sshd service is only running during the installation if inst.sshd is passed on the kernel cmdline. Resolves: rhbz#2041770 --- .../99-generic/config_files/common/sshd_config.anaconda | 1 + 1 file changed, 1 insertion(+) diff --git a/share/templates.d/99-generic/config_files/common/sshd_config.anaconda b/share/templates.d/99-generic/config_files/common/sshd_config.anaconda index e1e2bb79..8cc3b229 100644 --- a/share/templates.d/99-generic/config_files/common/sshd_config.anaconda +++ b/share/templates.d/99-generic/config_files/common/sshd_config.anaconda @@ -6,3 +6,4 @@ SyslogFacility AUTHPRIV PasswordAuthentication yes PermitEmptyPasswords yes PermitUserEnvironment yes +Subsystem sftp internal-sftp