Last active
April 30, 2018 17:37
-
-
Save vertig0ne/644846b495461b4462f5f610277e6d58 to your computer and use it in GitHub Desktop.
Systemd services
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=Radarr Daemon | |
After=syslog.target network.target unionfs.service | |
[Service] | |
User=radarr | |
Group=radarr | |
Type=simple | |
ExecStart=/usr/bin/mono --debug /opt/Radarr/Radarr.exe -nobrowser | |
TimeoutStopSec=20 | |
KillMode=process | |
Restart=on-failure | |
[Install] | |
WantedBy=multi-user.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=Sonarr Daemon | |
After=syslog.target network.target unionfs.service | |
[Service] | |
User=sonarr | |
Group=sonarr | |
Type=simple | |
ExecStart=/usr/bin/mono --debug /opt/Sonarr/Nzbdrone.exe -nobrowser | |
TimeoutStopSec=20 | |
KillMode=process | |
Restart=on-failure | |
[Install] | |
WantedBy=multi-user.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment