mirror of
https://github.com/wez/wezterm.git
synced 2024-11-22 22:42:48 +03:00
fix system ssh config path
This commit is contained in:
parent
a594298947
commit
494fa999bb
@ -11,7 +11,7 @@ usually the best available version.
|
|||||||
|
|
||||||
As features stabilize some brief notes about them will accumulate here.
|
As features stabilize some brief notes about them will accumulate here.
|
||||||
|
|
||||||
* Not yet
|
* Fixed: ssh client would read `/etc/ssh/config` rather than the proper `/etc/ssh/ssh_config`
|
||||||
|
|
||||||
### 20210502-154244-3f7122cb
|
### 20210502-154244-3f7122cb
|
||||||
|
|
||||||
|
@ -354,7 +354,7 @@ impl Config {
|
|||||||
if let Some(home) = dirs_next::home_dir() {
|
if let Some(home) = dirs_next::home_dir() {
|
||||||
self.add_config_file(home.join(".ssh").join("config"));
|
self.add_config_file(home.join(".ssh").join("config"));
|
||||||
}
|
}
|
||||||
self.add_config_file("/etc/ssh/config");
|
self.add_config_file("/etc/ssh/ssh_config");
|
||||||
}
|
}
|
||||||
|
|
||||||
fn resolve_local_user(&self) -> String {
|
fn resolve_local_user(&self) -> String {
|
||||||
|
Loading…
Reference in New Issue
Block a user