From 05363b618ac35a84d6f8fe5c341d5c0d66daaefd Mon Sep 17 00:00:00 2001 From: OoGuru Date: Sat, 25 Nov 2017 21:21:28 +0100 Subject: [PATCH] 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. --- Autostart-on-Linux.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Autostart-on-Linux.md b/Autostart-on-Linux.md index c6e2272..40bff9d 100644 --- a/Autostart-on-Linux.md +++ b/Autostart-on-Linux.md @@ -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