mirror of
https://github.com/transmission/transmission
synced 2024-12-26 09:37:56 +00:00
e7272fc340
network.target does not guarantee interfaces are fully configured, which can result in bound addresses not being available when the daemon starts. This leads to errors on start-up and potentially broken connectivity. network-online.target does provide these guarantees, but needs a slightly different dependency configuration with Wants= on top of After= (cf. systemd.special(7)). Closes #2720.
17 lines
360 B
Desktop File
17 lines
360 B
Desktop File
[Unit]
|
|
Description=Transmission BitTorrent Daemon
|
|
Wants=network-online.target
|
|
After=network-online.target
|
|
|
|
[Service]
|
|
User=transmission
|
|
Type=notify
|
|
ExecStart=/usr/bin/transmission-daemon -f --log-error
|
|
ExecReload=/bin/kill -s HUP $MAINPID
|
|
NoNewPrivileges=true
|
|
MemoryDenyWriteExecute=true
|
|
ProtectSystem=true
|
|
PrivateTmp=true
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|