Advertisement
Guest User

radarr.service

a guest
Oct 14th, 2020
762
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. [Unit]
  2. Description=Radarr Daemon
  3. After=syslog.target network.target
  4.  
  5. [Service]
  6. # Change the user and group variables here.
  7. User=radarr
  8. Group=debian-transmission
  9. UMask=002
  10.  
  11. Type=simple
  12.  
  13. # Change the path to Radarr or mono here if it is in a different location for you.
  14. ExecStart=/usr/bin/mono --debug /opt/radarr/Radarr.exe -nobrowser
  15. TimeoutStopSec=20
  16. KillMode=process
  17. Restart=on-failure
  18.  
  19. # These lines optionally isolate (sandbox) Radarr from the rest of the system.
  20. # Make sure to add any paths it might use to the list below (space-separated).
  21. #ReadWritePaths=/opt/Radarr /path/to/movies/folder
  22. #ProtectSystem=strict
  23. #PrivateDevices=true
  24. #ProtectHome=true
  25.  
  26. [Install]
  27. WantedBy=multi-user.target
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement