From 6a4c88c4cc71baf038713d216c597404ce8a65ac Mon Sep 17 00:00:00 2001 From: Stephen Chin Date: Sun, 10 May 2026 14:10:26 -0700 Subject: [PATCH] fix(hermesagent): slim down login hint to su and dashboard tunnel only --- install/hermesagent-install.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/install/hermesagent-install.sh b/install/hermesagent-install.sh index 35d3939e..fed08bc1 100644 --- a/install/hermesagent-install.sh +++ b/install/hermesagent-install.sh @@ -96,18 +96,16 @@ EOF systemctl enable -q --now hermes-dashboard msg_ok "Created Dashboard Service" -msg_info "Configuring Login Guidance" +msg_info "Configuring Login Hints" cat <<'HINT' >/etc/profile.d/hermes-hint.sh if [[ "$(id -u)" -eq 0 ]]; then echo " Run 'su - hermes' to manage Hermes Agent and profiles." fi LOCAL_IP=$(hostname -I 2>/dev/null | awk '{print $1}') -echo " API Server (OpenAI-compatible): http://${LOCAL_IP}:8642/v1" -echo " API key: /home/hermes/.hermes/.env" echo " Dashboard: ssh -fNL 9119:localhost:9119 root@${LOCAL_IP}" echo " then open http://localhost:9119" HINT -msg_ok "Configured Login Guidance" +msg_ok "Configured Login Hints" motd_ssh customize