Advertisement
Guest User

Untitled

a guest
Jul 19th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. [Unit]
  2. Description=GDrive Daemon
  3. After=multi-user.target
  4.  
  5. [Service]
  6. Type=simple
  7. User=0
  8. Group=0
  9. ExecStart=/usr/bin/rclone --allow-non-empty --allow-other mount gdrive: /mnt/gdrive \
  10. --uid=1000 --gid=1000 \
  11. --size-only --dir-cache-time=2m \
  12. --vfs-read-chunk-size=64M --vfs-cache-max-age 675h --vfs-read-chunk-size-limit=1G \
  13. --buffer-size=32M --syslog --umask 002 --log-level INFO \
  14. --config /root/.config/rclone/rclone.conf
  15. ExecStop=/bin/fusermount -uz /mnt/gdrive
  16. TimeoutStopSec=20
  17. KillMode=process
  18. RemainAfterExit=yes
  19.  
  20. [Install]
  21. WantedBy=multi-user.target
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement