With the `deluge` user specified in the unit files it ties it to
that user and makes it unavailable for re-use by systemd user instance.
Remove the user and group from the unit files and put them in a separate
`user.conf` file that should be installed as an override file e.g. for
deluged.service this would be placed as follows:
/etc/systemd/service/deluge.service.d/user.conf
Add the systemd files to the tarball for package maintainers.
Closes: #2034
17 lines
278 B
Desktop File
17 lines
278 B
Desktop File
[Unit]
|
|
Description=Deluge Bittorrent Client Web Interface
|
|
Documentation=man:deluge-web
|
|
After=network-online.target deluged.service
|
|
Wants=deluged.service
|
|
|
|
[Service]
|
|
Type=simple
|
|
UMask=027
|
|
|
|
ExecStart=/usr/bin/deluge-web -d
|
|
|
|
Restart=on-failure
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|