From 7763de6c4b93d3372ab3f4572d9fa6b7536102b3 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Wed, 4 Jan 2023 19:37:30 +0100 Subject: ssh: T2651: use Debian style include directve for ssh_config.d Commit 846e306700a ("ssh: T2651: add cli options for source address") added support for a basic SSH client option, but it grabbed the entire /etc/ssh/ssh_config file without the ability to make custom user adjustments via the /etc/ssh/ssh_config.d/ folder. This vommit places the VyOS SSH options under /etc/ssh/ssh_config.d/ leaving the common override system alive. --- src/conf_mode/system-option.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/conf_mode/system-option.py') diff --git a/src/conf_mode/system-option.py b/src/conf_mode/system-option.py index 36dbf155b..85fc6a83f 100755 --- a/src/conf_mode/system-option.py +++ b/src/conf_mode/system-option.py @@ -32,7 +32,7 @@ from vyos import airbag airbag.enable() curlrc_config = r'/etc/curlrc' -ssh_config = r'/etc/ssh/ssh_config' +ssh_config = r'/etc/ssh/ssh_config.d/91-vyos-ssh-client-options.conf' systemd_action_file = '/lib/systemd/system/ctrl-alt-del.target' def get_config(config=None): -- cgit v1.2.3