Skip to content

Instantly share code, notes, and snippets.

@seraph
Forked from kabili207/Rclone systemd service.md
Last active October 18, 2024 19:54
Show Gist options
  • Select an option

  • Save seraph/4b951d74b6b6ddfeb31615b65ab4c9ed to your computer and use it in GitHub Desktop.

Select an option

Save seraph/4b951d74b6b6ddfeb31615b65ab4c9ed to your computer and use it in GitHub Desktop.
Rclone systemd user service

rclone systemd service

Preparation

This service will use the same remote name you specified when using rclone config create. If you haven't done that yet, do so now.

Next, create the mountpoint for your remote. The service uses the location ~/mnt/<remote> by default.

mkdir ~/mnt/dropbox

The --allow-other option is required in order to work in many desktop environments. This flag must be enabled by adding user_allow_other to /etc/fuse.conf. If you aren't using a desktop environment, such as on a server, this option can be omitted.

Adding the service

Save the [email protected] file in ~/.config/systemd/user/ Make sure you include the @. This is required to work.

As your normal user, run:

systemctl --user daemon-reload

Using the service

You can now start/enable each remote by using rclone@<remote>

systemctl --user enable --now rclone@dropbox
# User service for Rclone mounting
#
# Place in ~/.config/systemd/user/
# File must include the '@' (ex [email protected])
# As your normal user, run
# systemctl --user daemon-reload
# You can now start/enable each remote by using rclone@<remote>
# systemctl --user enable --now rclone@Google
# Defaults to ~/Cloud/Google for example
# PAY ATTENTION TO PATHS FOR fusermount etc.
[Unit]
Description=rclone: Remote FUSE filesystem for cloud storage config %i
Documentation=man:rclone(1)
After=network-online.target
Wants=network-online.target
[Service]
Type=notify
ExecStartPre=-/usr/bin/mkdir -p %h/Cloud/%i
ExecStart= \
/usr/bin/rclone mount \
--config=%h/.config/rclone/rclone.conf \
--vfs-cache-mode full \
--vfs-cache-max-size 20G \
--log-level INFO \
--log-file /tmp/rclone-%i.log \
--umask 022 \
# --allow-other \
%i: %h/Cloud/%i
ExecStop=/usr/bin/fusermount3 -u %h/Cloud/%i
[Install]
WantedBy=default.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment