Using Restart=always seems to be the cause of Radarr shutdown itself down as it starts itself twice - it leads to some sort of race which fills up the logs with restarts. Switching to Restart=on-failure should hopefully remove this issue though still maintain the option of restarting in case of an error that shuts Radarr down.

master
OoGuru 7 years ago
parent c8c8b799a6
commit 05363b618a

@ -18,7 +18,7 @@ Type=simple
ExecStart=/usr/bin/mono --debug /opt/Radarr/Radarr.exe --nobrowser
TimeoutStopSec=20
KillMode=process
Restart=always
Restart=on-failure
[Install]
WantedBy=multi-user.target

Loading…
Cancel
Save