18 lines
493 B
SYSTEMD
18 lines
493 B
SYSTEMD
|
[Unit]
|
||
|
Description=Supervisor process control system for UNIX
|
||
|
Documentation=http://supervisord.org
|
||
|
After=network.target
|
||
|
|
||
|
[Service]
|
||
|
ExecStart=/opt/ffplayout-engine/venv/bin/supervisord -n -c /opt/ffplayout-engine/supervisor/supervisord.conf
|
||
|
ExecStop=/opt/ffplayout-engine/venv/bin/supervisorctl $OPTIONS shutdown
|
||
|
ExecReload=/opt/ffplayout-engine/venv/bin/supervisorctl $OPTIONS reload
|
||
|
KillMode=process
|
||
|
Restart=on-failure
|
||
|
RestartSec=5s
|
||
|
User=root
|
||
|
Group=root
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|