Skip to content

Commit

Permalink
sftp: note about missing ssh_config.d/* support
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasWaldmann committed Sep 15, 2024
1 parent d6c90d6 commit 5ff7a6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/borgstore/backends/sftp.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def _connect(self):
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
user_config_path = Path("~/.ssh/config").expanduser()
system_config_path = Path("/etc/ssh/ssh_config")
system_config_path = Path("/etc/ssh/ssh_config") # no support yet for ssh_config.d/*
ssh_config = paramiko.SSHConfig()
try:
with open(user_config_path) as f:
Expand Down

0 comments on commit 5ff7a6a

Please sign in to comment.