Guest User

Untitled

a guest
May 11th, 2022
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. [Unit]
  2. Description=RClone Service Dropbox Movies
  3. Wants=network-online.target
  4. After=network-online.target
  5.  
  6. [Service]
  7. Type=notify
  8. Environment=RCLONE_CONFIG=/root/.config/rclone/rclone.conf
  9. KillMode=none
  10. RestartSec=5
  11. ExecStart=/usr/bin/rclone mount "dropbox_app":/ /mnt/PLEX \
  12. --allow-other \
  13. --dir-cache-time 9999h \
  14. --log-file /STUFF/dropbox-movies.log \
  15. --log-level INFO \
  16. --umask 002 \
  17. --cache-dir=/tmp/rclone/cache \
  18. --vfs-cache-mode full \
  19. --vfs-cache-max-size 350G \
  20. --vfs-write-back 1h \
  21. --vfs-cache-max-age 9999h \
  22. --vfs-read-ahead 1G \
  23. --tpslimit 10 \
  24. --tpslimit-burst 10 \
  25. --bind 10.0.0.3 \
  26. --cache-db-purge \
  27. --disable-http2
  28. ExecStop=/bin/fusermount -uz /mnt/PLEX
  29. Restart=on-failure
  30. User=root
  31. Group=root
  32.  
  33. [Install]
  34. WantedBy=multi-user.target
Advertisement
Add Comment
Please, Sign In to add comment