Use installed dosh-auth path for SSH bootstrap
ci / test (push) Has been cancelled
ci / remote-bench (push) Has been cancelled

This commit is contained in:
Codex
2026-06-11 09:03:20 -04:00
parent d58a4244af
commit babfb204c3
7 changed files with 18 additions and 8 deletions
+2
View File
@@ -46,6 +46,7 @@ impl Default for ServerConfig {
pub struct ClientConfig {
pub server: String,
pub dosh_host: Option<String>,
pub ssh_auth_command: Option<String>,
pub ssh_port: Option<u16>,
pub dosh_port: u16,
pub default_session: String,
@@ -60,6 +61,7 @@ impl Default for ClientConfig {
Self {
server: "user@example.com".to_string(),
dosh_host: None,
ssh_auth_command: Some("~/.local/bin/dosh-auth".to_string()),
ssh_port: None,
dosh_port: 50000,
default_session: "default".to_string(),