26 lines
634 B
Desktop File
26 lines
634 B
Desktop File
[Unit]
|
|
Description=Calypso Stack Log Aggregator
|
|
Documentation=https://github.com/atlasos/calypso
|
|
After=network.target
|
|
Wants=calypso-api.service calypso-frontend.service
|
|
|
|
[Service]
|
|
Type=simple
|
|
# Run as root to access journald and write to /var/syslog
|
|
# Format: timestamp [service] message
|
|
ExecStart=/bin/bash -c '/usr/bin/journalctl -u calypso-api.service -u calypso-frontend.service -f --no-pager -o short-iso >> /var/syslog/calypso.log 2>&1'
|
|
Restart=always
|
|
RestartSec=5
|
|
|
|
# Security hardening
|
|
NoNewPrivileges=false
|
|
PrivateTmp=true
|
|
ReadWritePaths=/var/syslog
|
|
|
|
# Resource limits
|
|
LimitNOFILE=65536
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|