From ae7bffb2a97eeda7e3a8318eced9ae3ca303797c 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 e6d46447..940f501f 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