From 9191a54637a8a819b6967942d549b90dc89cfe6b Mon Sep 17 00:00:00 2001 From: Gmer4Lfe Date: Sat, 30 May 2026 21:31:46 -0400 Subject: [PATCH] Fix ssh_setup.sh: HOST_CONF path missing Configurations/ subdirectory MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Was looking for host1.conf at SCRIPTS_ROOT/host1.conf instead of SCRIPTS_ROOT/Configurations/host1.conf — causing the 'host1.conf not found' warning and leaving HOST1_SSH_KEY unwritten after key generation. --- Partnership/ssh_setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Partnership/ssh_setup.sh b/Partnership/ssh_setup.sh index 4e07f86..8a8c73f 100755 --- a/Partnership/ssh_setup.sh +++ b/Partnership/ssh_setup.sh @@ -85,7 +85,7 @@ SSH_PUB_PATH="${SSH_KEY_PATH}.pub" # ── Host conf path ──────────────────────────────────────────────────────────────────────────── HOST_NUM="${MY_ID#HOST}" # "1" or "2" -HOST_CONF="$SCRIPTS_ROOT/host${HOST_NUM}.conf" +HOST_CONF="$SCRIPTS_ROOT/Configurations/host${HOST_NUM}.conf" KEY_CONF_VAR="${MY_ID}_SSH_KEY" # ── Strike state file ─────────────────────────────────────────────────────────────────────────