Create the following file under ~/.config/systemd/user/rclone-dropbox.service
:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=Dropbox (rclone) | |
AssertPathIsDirectory=%h/Dropbox | |
# Make sure we have network enabled | |
After=network.target | |
[Service] | |
Type=simple | |
ExecStart=/usr/bin/rclone mount --vfs-cache-mode full Dropbox: Dropbox | |
# Perform lazy unmount | |
ExecStop=/usr/bin/fusermount -zu %h/Dropbox | |
# Restart the service whenever rclone exists with non-zero exit code | |
Restart=on-failure | |
RestartSec=15 | |
[Install] | |
# Autostart after reboot | |
WantedBy=default.target |
Reload the user services, enable and start the new service:
$ systemctl --user daemon-reload
$ systemctl --user enable --now rclone-dropbox