1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-06-30 17:43:59 +02:00

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.

OoGuru 2017-11-25 21:21:28 +01:00
parent c8c8b799a6
commit 05363b618a

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