rkvm/systemd/rkvm-server.service
Lin Jian cc58da2987
Fix systemd services
- a server should be after network.target instead of
network-online.target[1]
- a client should also pull in network-online.target[1]
- the manual mentions StartLimitIntervalSec=0 but not
StartLimitBurst=0[2]

[1]: man systemd.special
[2]: man systemd.unit
2023-09-24 15:38:24 +08:00

11 lines
182 B
Desktop File

[Unit]
Description=rkvm server
After=network.target
[Service]
ExecStart=/usr/bin/rkvm-server /etc/rkvm/server.toml
Restart=always
RestartSec=5
[Install]
WantedBy=multi-user.target