From 000667fbf5fd2d5708deb77fa758749bc369cf2b 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#2040770 --- .../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 c59b2c06..241ba8fc 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 @@ -4,3 +4,4 @@ SyslogFacility AUTHPRIV PasswordAuthentication yes PermitEmptyPasswords yes PermitUserEnvironment yes +Subsystem sftp internal-sftp