Merge pull request #5051 from deontologician/patch-1
Added -FF flag to rsync invocation in synchronize
This commit is contained in:
commit
552ce8b68c
1 changed files with 10 additions and 1 deletions
|
@ -127,6 +127,10 @@ notes:
|
||||||
- The remote user for the dest path will always be the remote_user, not
|
- The remote user for the dest path will always be the remote_user, not
|
||||||
the sudo_user.
|
the sudo_user.
|
||||||
- Expect that dest=~/x will be ~<remote_user>/x even if using sudo.
|
- Expect that dest=~/x will be ~<remote_user>/x even if using sudo.
|
||||||
|
- To exclude files and directories from being synchronized, you may add
|
||||||
|
C(.rsync-filter) files to the source directory.
|
||||||
|
|
||||||
|
|
||||||
author: Timothy Appnel
|
author: Timothy Appnel
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
@ -160,6 +164,11 @@ synchronize: src=some/relative/path dest=/some/absolute/path delete=yes
|
||||||
|
|
||||||
# Synchronize using an alternate rsync command
|
# Synchronize using an alternate rsync command
|
||||||
synchronize: src=some/relative/path dest=/some/absolute/path rsync_path="sudo rsync"
|
synchronize: src=some/relative/path dest=/some/absolute/path rsync_path="sudo rsync"
|
||||||
|
|
||||||
|
# Example .rsync-filter file in the source directory
|
||||||
|
- var # exclude any path whose last part is 'var'
|
||||||
|
- /var # exclude any path starting with 'var' starting at the source directory
|
||||||
|
+ /var/conf # include /var/conf even though it was previously excluded
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
||||||
|
@ -207,7 +216,7 @@ def main():
|
||||||
owner = module.params['owner']
|
owner = module.params['owner']
|
||||||
group = module.params['group']
|
group = module.params['group']
|
||||||
|
|
||||||
cmd = '%s --delay-updates --compress --timeout=%s' % (rsync, rsync_timeout)
|
cmd = '%s --delay-updates -FF --compress --timeout=%s' % (rsync, rsync_timeout)
|
||||||
if module.check_mode:
|
if module.check_mode:
|
||||||
cmd = cmd + ' --dry-run'
|
cmd = cmd + ' --dry-run'
|
||||||
if delete:
|
if delete:
|
||||||
|
|
Loading…
Reference in a new issue