From 73eaa27c6bb1992db0a054b356a14910e4cfdd8f Mon Sep 17 00:00:00 2001 From: cclohmar Date: Sun, 14 Jun 2026 16:13:54 +0000 Subject: [PATCH] fix(installer): auto-start service, remove dead flag references --- install.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 8fcba27..ca8b6aa 100755 --- a/install.sh +++ b/install.sh @@ -446,9 +446,12 @@ info " Workspace: ${NEXTWKS_URL}" info " Auth: ${AUTH_URL}" info " Admin UI: ${NEXTWKS_URL}/admin" echo "" -info " Start: sudo systemctl enable --now nextwks" -info " Logs: sudo journalctl -u nextwks -f" -info " Status: ./install.sh --status" + +# Start the service +info "Starting services..." +$SUDO systemctl enable --now nextwks 2>/dev/null && success "NextWks is running" || warn "Start service manually: sudo systemctl start nextwks" +echo "" +info " Logs: sudo journalctl -u nextwks -f" echo "" if [ -n "${ADMIN_PASS:-}" ]; then warn " ┌─────────────────────────────────────────┐"