@cavedog I have an issue that I'm hoping you can assit with. I can get *arr to copy the files to local root media folders once downloaded but not to the rclone mounted onedrive. Pretty sure it's a permission related thing.
Everything runs under the ubuntu user and group and this is what the permissions look like without rclone active
ubuntu@ubuntu:/media$ ls -la
total 12
drwxr-xr-x 3 root root 4096 Nov 1 06:46 .
drwxr-xr-x 20 root root 4096 Nov 4 06:56 ..
drwxrwxrwx 2 ubuntu ubuntu 4096 Nov 1 06:56 PlexOnedrive
Once rclone mounts it changes to this (assuming this is normal as root would be doing the mounting):
drwxr-xr-x 1 root root 0 Nov 4 07:23 PlexOnedrive
Any folders created underneath it then inherits these root permissions and I'm guessing that's why it's not working.
My rclone.service looks like this:
Type=simple
ExecStart=/usr/bin/rclone mount \
--config=/home/ubuntu/.config/rclone/rclone.conf \
--allow-other \
--file-perms 0777 \
--vfs-cache-mode writes \
--dir-cache-time=60m \
--onedrive-chunk-size 150M \
--cache-info-age=60m OneDrive:Media /media/PlexOnedrive
ExecStop=/bin/fusermount -u /media/PlexOnedrive
Restart=always
RestartSec=10
[Install]
WantedBy=default.target
Any ideas ?
EDIT: Weird thing is that I can manually in the terminal create directories and files as the ubuntu user post-mount.