[v2] fix broken SFTP in OpenSSH server

Message ID 20181008173009.3795-1-peter.mueller@link38.eu
State Accepted
Commit 1223078cde69625946a7f6a444b8dddf8926d335
Headers
Series [v2] fix broken SFTP in OpenSSH server |

Commit Message

Peter Müller Oct. 9, 2018, 4:30 a.m. UTC
  Fixes #11887

The second version of this patch uses the correct path on IPFire systems
and supersedes the first one. It also referrs to the correct issue ID.

Thanks to Matthias Fischer for reporting this.

Signed-off-by: Peter Müller <peter.mueller@link38.eu>
---
 config/ssh/sshd_config | 3 +++
 1 file changed, 3 insertions(+)
  

Patch

diff --git a/config/ssh/sshd_config b/config/ssh/sshd_config
index 60bb0a9e6..a248c4906 100644
--- a/config/ssh/sshd_config
+++ b/config/ssh/sshd_config
@@ -75,4 +75,7 @@  ClientAliveInterval 10
 # close unresponsive SSH sessions which fail to answer keep-alive
 ClientAliveCountMax 6
 
+# add support for SFTP
+Subsystem	sftp	/usr/lib/openssh/sftp-server
+
 # EOF