From 442b465f16a769cf01ea16e394c81ca9d9081ec8 Mon Sep 17 00:00:00 2001 From: michael Date: Fri, 5 Sep 2025 17:02:31 +0200 Subject: [PATCH] fix(systemd): use Type=forking for background start.sh compatibility - Change Type=simple to Type=forking in systemd service - Properly handle start.sh background process (&) - Ensures systemd correctly tracks daemon lifecycle - Fixes BSD-compatible start script integration Fixes #104 --- deployment/linux/furt.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/linux/furt.service b/deployment/linux/furt.service index d4df3d1..f09104b 100644 --- a/deployment/linux/furt.service +++ b/deployment/linux/furt.service @@ -3,7 +3,7 @@ Description=furt Multi-Tenant API Gateway After=network.target [Service] -Type=simple +Type=forking User=furt Group=furt ExecStart=/usr/local/share/furt/scripts/start.sh start