You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: root/etc/cont-init.d/50-rclone
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,17 @@ while findmnt "${rclone_mountpoint}" | grep -q fuse.rclone; do
37
37
sleep 30s
38
38
done
39
39
40
+
# checking redefined args
41
+
redefined=""
42
+
for opt in $rclone_mount_basic_opts; do
43
+
opt="${opt%=*}"
44
+
case "$RCLONE_MOUNT_USER_OPTS" in *$opt*) redefined="$redefined ${opt}";; esac
45
+
done
46
+
if [ -n "${redefined}" ]; then
47
+
echo "*** ERROR: Some of the arguments you have specified are already built-in. Please remove them from the RCLONE_MOUNT_USER_OPTS environment variable:${redefined}"
0 commit comments