Skip to content

Commit

Permalink
Fix issue with extra "\\ " in mount command
Browse files Browse the repository at this point in the history
Had to remove comment as it caused issue with rclone mount
```
Command mount needs 2 arguments maximum: you provided 3 non flag arguments: ["\\ "....
```
  • Loading branch information
rka authored Mar 5, 2024
1 parent 272478e commit f9e7c24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion onedrive.j2
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ ExecStart=/usr/bin/rclone mount \
--vfs-cache-mode=full \
--vfs-cache-poll-interval={{ rclone_vfs_cache_poll_interval }} \
--vfs-fast-fingerprint \
--vfs-disk-space-total-size=25000G \ {# Set it to your Onedrive storage size or delete #}
--vfs-disk-space-total-size=25000G \
--vfs-read-ahead=128M \
{% endif %}
--vfs-read-chunk-size-limit=2G \
Expand Down

0 comments on commit f9e7c24

Please sign in to comment.