From 22b64e8ee54dc77fc148b9a0afc010b35c73cb8f Mon Sep 17 00:00:00 2001 From: Zoe <124623481+ZoeWithTheE@users.noreply.github.com> Date: Mon, 20 Oct 2025 12:22:37 -0700 Subject: [PATCH] Update SSHConfig.java added default key value --- src/main/java/com/osiris/autoplug/client/configs/SSHConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/osiris/autoplug/client/configs/SSHConfig.java b/src/main/java/com/osiris/autoplug/client/configs/SSHConfig.java index 60903d07..26839a1a 100644 --- a/src/main/java/com/osiris/autoplug/client/configs/SSHConfig.java +++ b/src/main/java/com/osiris/autoplug/client/configs/SSHConfig.java @@ -91,7 +91,7 @@ public SSHConfig() throws IOException, DuplicateKeyException, YamlReaderExceptio "The generated file will be a .pub file, which contains the public key.", "Example connection command: `ssh -i /path/to/private/key username@server-ip-address`"); - server_private_key = put(name, "server-private-key") + server_private_key = put(name, "server-private-key").setDefValues("./autoplug/id_rsa") .setComments( "The private key used by the server to authenticate itself to the SSH console.", "The file must be in the OpenSSH format.",