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
Seems the issue with that rsync interperts the -vazr --existing -e as one single option. On the other hand, using -vazre --existing makes rsync think that the command it is executing (after the -e flag) is --existing which causes it to fail as well.
This looks like it may need a fair amount of work needed to process the flags and then place them in the cmd variable separately to ensure they are passed to rsync correctly.
Let me know if I am not understanding the problem.
If there is interest, I can look into making this work.
EDIT:
Actually, after some more experimenting with rsync it seems all we need to do is remove a -e flag in the remote_options input and then throw the -e on after the options, just before ssh -p PORT.
I'm not sure, however, if we will need to split something like --existing -e -vaz -r --progress into [--existing, -vaz, -r, --progress] before adding -e 'ssh -p PORT' ....
The text was updated successfully, but these errors were encountered:
Example configs that fail:
Seems the issue with that rsync interperts the
-vazr --existing -e
as one single option. On the other hand, using-vazre --existing
makes rsync think that the command it is executing (after the-e
flag) is--existing
which causes it to fail as well.This looks like it may need a fair amount of work needed to process the flags and then place them in the
cmd
variable separately to ensure they are passed to rsync correctly.Let me know if I am not understanding the problem.
If there is interest, I can look into making this work.
EDIT:
Actually, after some more experimenting with rsync it seems all we need to do is remove a
-e
flag in the remote_options input and then throw the-e
on after the options, just beforessh -p PORT
.I'm not sure, however, if we will need to split something like
--existing -e -vaz -r --progress
into[--existing, -vaz, -r, --progress]
before adding-e 'ssh -p PORT' ...
.The text was updated successfully, but these errors were encountered: