I updated to rclone rclone v1.62.2 and it stopped working [Solved]

Everything was working fine until rclone 1.60, but I updated to version 1.62 and my systemctl stopped mounting, so I believe it is some parameter that has changed or is no longer used, here is the configuration I was using

WantedBy=multi-user.target

[Unit]
Description=rClone mount encrypted drive
AssertPathIsDirectory=/home/jelly/Contos
After=network-online.target

[Service]
Type=simple
ExecStart=/usr/bin/rclone mount \
   --config=/home/jelly/.config/rclone/rclone.conf \
         --buffer-size=128M \
         --max-read-ahead=256M \
         --poll-interval=1m \
         --dir-cache-time=12h \
         --timeout=10m \
         --transfers=14 \
         --drive-chunk-size=128M \
         --allow-other \
         --umask=027 \
         -vP \
         contos-crypt:/ /home/jelly/Contos
ExecStop=/usr/bin/fusermount -u /home/jelly/Contos
Restart=on-failure
RestartSec=10
user=jelly

[Install]
WantedBy=multi-user.target

hi,

so, if you downgrade to v1.60.0, everything works again?

Find out, they are using fuse3, they are looking for the fusermount3 binary, I installed it and it solved it

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.