Skip to content
This repository has been archived by the owner on Sep 20, 2022. It is now read-only.

HeikoBornholdt/openmediavault-rclone

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

openmediavault-rclone

  1. You have to install and configure rclone by your own.
  2. You have to create systemd services for rclone mounts by your own.

Example systemd service:

[Unit]
Description=Google Drive Mount
AssertPathIsDirectory=/mnt/gdrive
After=network-online.target

[Service]
Type=notify
ExecStart=/usr/bin/rclone mount gdrive: /mnt/gdrive \
	--verbose \
	--config /root/.rclone.conf \
	--allow-other \
	--uid 1000 \
	--gid 100 \
	--umask=002 \
	--buffer-size 256M \
	--dir-cache-time 72h \
	--drive-chunk-size 32M \
	--timeout 1h \
	--vfs-read-chunk-size 128M \
	--vfs-read-chunk-size-limit off \
	--rc-addr=127.0.0.1:5572 \
	--rc
ExecStop=/bin/fusermount -uz /mnt/gdrive
Restart=always

[Install]
WantedBy=default.target

About

Rclone mount plugin for OpenMediaVault. Makes it possible to mount rclone remotes.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published