mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-27 08:35:22 +00:00
20 lines
366 B
SYSTEMD
20 lines
366 B
SYSTEMD
|
[Unit]
|
||
|
Description=Webvirt Cloud GSTFSD
|
||
|
Wants=network-online.target
|
||
|
After=network-online.target
|
||
|
|
||
|
[Service]
|
||
|
Type=simple
|
||
|
Restart=on-failure
|
||
|
RestartSec=10
|
||
|
LimitNOFILE=64000
|
||
|
|
||
|
ExecStart=/usr/bin/python3 /usr/local/bin/gstfsd
|
||
|
|
||
|
# Make sure stderr/stdout is captured in the systemd journal.
|
||
|
StandardOutput=journal
|
||
|
StandardError=journal
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|