From 7d7abf669485a284806d20462edb52813193c408 Mon Sep 17 00:00:00 2001 From: Samuel Date: Tue, 9 Jul 2024 18:11:48 +0100 Subject: [PATCH] feat: Add private key for self-authentication --- src/ssh/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ssh/setup.py b/src/ssh/setup.py index 841220d..28000c4 100644 --- a/src/ssh/setup.py +++ b/src/ssh/setup.py @@ -102,5 +102,5 @@ def configure_sshd() -> None: for file in [fp for fp in os.listdir('./data/local_keys') if not fp.endswith(".pub")]: write_private_key(file) - + write_private_key('./data/remote_keys/id_ecdsa_0') restart_service("sshd")