mirror of
https://github.com/rclone/rclone.git
synced 2024-11-24 17:34:57 +01:00
describe shortcomings
parent
c334505952
commit
e8ed0bdb9d
@ -35,11 +35,11 @@ To enable mounting a volume using rclone via an entry in fstab the following hel
|
||||
|
||||
# exec rclone
|
||||
trans="$trans $remote $mountpoint"
|
||||
# NOTE: do not try "mount --daemon" here, it does not play well with systemd automount, use '&'!
|
||||
PATH=$PATH rclone mount $trans </dev/null >/dev/null 2>/dev/null &
|
||||
|
||||
out=`ls -l $dst`
|
||||
until [ "$out" != 'total 0' ]; do
|
||||
out=`ls -l $dst`
|
||||
# WARNING: this will loop forever if remote is actually empty!
|
||||
until [ "`ls -l $mountpoint`" != 'total 0' ]; do
|
||||
sleep 1
|
||||
done
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user