From 4bb383f127f11d70ae39b180d247211f48d3e19f Mon Sep 17 00:00:00 2001 From: Agent Date: Thu, 11 Jun 2026 20:55:15 -0400 Subject: [PATCH] feat: start agent immediately in background after user-mode install After installing cron, the agent now starts right away via nohup ... & disown instead of waiting for the next boot. --- install/agent-install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install/agent-install.sh b/install/agent-install.sh index 76c6b32..e010887 100644 --- a/install/agent-install.sh +++ b/install/agent-install.sh @@ -135,6 +135,9 @@ else echo "WARNING: Could not install crontab." echo " Run: $AGENT_BIN &" } + echo " Starting agent in background..." + nohup "$AGENT_BIN" > "$LOG_DIR/agent.log" 2>&1 & disown + echo " Agent started (PID $!)" fi echo ""