blob: ce9aaa4505288674ed34eab9a5c37c86978eff81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Be sure to use `systemctl edit whisparr` to modify this service with an override.conf because
# direct changes will be overwritten by package updates.
#
# A user per service w/ shared group setup would have an override like:
# [Service]
# Group=sharedgroupname
# UMask=002
[Unit]
Description=Whisparr Service
Wants=network-online.target
After=network-online.target
[Service]
User=whisparr
Group=whisparr
SyslogIdentifier=whisparr
ExecStart=/usr/lib/whisparr/bin/Whisparr -nobrowser -data=/var/lib/whisparr
Type=simple
[Install]
WantedBy=multi-user.target
|