fix(installer): auto-start service, remove dead flag references

This commit is contained in:
Claus Lohmar 2026-06-14 16:13:54 +00:00
parent 3b4fd6a84c
commit 73eaa27c6b

View file

@ -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 " ┌─────────────────────────────────────────┐"