synchronize: use a single -F instead of -FF

This small change corrects behavior when one uses an .rsync-filter file to exclude some paths from both being transferred and being deleted, so that these excluded paths can be handled separately with different tasks (e.g. in order to deploy the excluded paths independently from the rest paths and notify handlers appropriately). The problem with the double -FF option is that it excludes the .rsync-filter file from being transferred to the receiver. However, deletions are done on the side of the receiver, so it is absolutely necessary the .rsync-filter file to be transferred to the receiver, so that the receiver knows what files to delete and what not to delete.
pull/18777/head
Petros Moisiadis 10 years ago committed by Matt Clay
parent 164d518370
commit f5961f9ecf

@ -255,7 +255,7 @@ def main():
group = module.params['group'] group = module.params['group']
rsync_opts = module.params['rsync_opts'] rsync_opts = module.params['rsync_opts']
cmd = '%s --delay-updates -FF' % rsync cmd = '%s --delay-updates -F' % rsync
if compress: if compress:
cmd = cmd + ' --compress' cmd = cmd + ' --compress'
if rsync_timeout: if rsync_timeout:

Loading…
Cancel
Save