[Unit] Description=RClone Service Dropbox Wants=network-online.target After=network-online.target [Service] Type=notify Environment=RCLONE_CONFIG=/opt/rclone/rclone.conf KillMode=none RestartSec=5 ExecStart=/usr/bin/rclone mount dcrypt: /DB \ # This is for allowing users other than the user running rclone access to the mount --allow-other \ # Dropbox is a polling remote so this value can be set very high and any changes are detected via polling. --dir-cache-time 5000h \ # Log file location --log-file /opt/rclone/logs/dropbox.log \ # Set the log level --log-level NOTICE \ # I reduce the poll interval down to 10 seconds as this makes changes fast --poll-interval 10s \ # This is setting the file permission on the mount to user and group have the same access and other can read --umask 002 \ # This sets up the remote control daemon so you can issue rc commands locally --rc \ # This is the default port it runs on --rc-addr :5572 \ # no-auth is used as no one else uses my server and it...