mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Update win_robocopy example (#21992)
"flags" is set, thus "recurse" and "purge" will be ignored.
This commit is contained in:
parent
ce150a8295
commit
e16b907114
1 changed files with 1 additions and 3 deletions
|
@ -98,9 +98,7 @@ EXAMPLES = r'''
|
|||
win_robocopy:
|
||||
src: C:\DirectoryOne
|
||||
dest: C:\DirectoryTwo
|
||||
recurse: True
|
||||
purge: True
|
||||
flags: /XD SOME_DIR /XF SOME_FILE /MT:32
|
||||
flags: /E /PURGE /XD SOME_DIR /XF SOME_FILE /MT:32
|
||||
'''
|
||||
|
||||
RETURN = r'''
|
||||
|
|
Loading…
Reference in a new issue