rclone-mount with basic unmount support

This commit is contained in:
darkelaina 2021-11-07 15:37:32 +00:00
parent baddfb65b9
commit 011bffa112

View File

@ -0,0 +1,13 @@
#!/usr/bin/bash
RCLONE_REMOTE="<remote name>"
# Rclone remote will be mounted to /mnt/runtime/write/emulated/0/ which is equal to /sdcard in File Explorer (aka your home directory) and equal to ~/storage/shared in Termux
ROOT_HOME_DIR="/mnt/runtime/write/emulated/0/"
RCLONE_MOUNT_DIR="<mount directory>"
if [ "$1" = "unmount" ]; then
sudo fusermount -u "$ROOT_HOME_DIR$RCLONE_MOUNT_DIR"
echo "$RCLONE_REMOTE should be unmounted now"
else
sudo nohup rclone --vfs-cache-mode writes -v mount $RCLONE_REMOTE: "$ROOT_HOME_DIR$RCLONE_MOUNT_DIR" --gid 9997 --dir-perms 0771 --file-perms 0660 --umask=0 --allow-other &
echo "$RCLONE_REMOTE should be mounted now, check $RCLONE_MOUNT_DIR"
fi