- 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
18 lines
321 B
Desktop File
18 lines
321 B
Desktop File
[Unit]
|
|
Description=furt Multi-Tenant API Gateway
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=forking
|
|
User=furt
|
|
Group=furt
|
|
ExecStart=/usr/local/share/furt/scripts/start.sh start
|
|
WorkingDirectory=/usr/local/share/furt
|
|
Restart=always
|
|
RestartSec=5
|
|
StandardOutput=journal
|
|
StandardError=journal
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|