Skip to content

Instantly share code, notes, and snippets.

@vertig0ne
Last active April 30, 2018 17:37
Show Gist options
  • Save vertig0ne/644846b495461b4462f5f610277e6d58 to your computer and use it in GitHub Desktop.
Save vertig0ne/644846b495461b4462f5f610277e6d58 to your computer and use it in GitHub Desktop.
Systemd services
[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
[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