From 8498b58ad57414c8d1ed269f80cd7f1ac6f6fc5a Mon Sep 17 00:00:00 2001 From: aaronk1 Date: Wed, 26 Sep 2018 16:28:16 -0400 Subject: [PATCH] Update win_robocopy.py (#38633) * Update win_robocopy.py +label: docsite_pr * addresses jborean comment, removes double quotes * Remove trailing slash part --- lib/ansible/modules/windows/win_robocopy.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/windows/win_robocopy.py b/lib/ansible/modules/windows/win_robocopy.py index 3a06e98d93b..0aac86f2a0d 100644 --- a/lib/ansible/modules/windows/win_robocopy.py +++ b/lib/ansible/modules/windows/win_robocopy.py @@ -17,9 +17,9 @@ module: win_robocopy version_added: '2.2' short_description: Synchronizes the contents of two directories using Robocopy description: -- Synchronizes the contents of two directories on the remote machine. +- Synchronizes the contents of files/directories from a source to destination. - Under the hood this just calls out to RoboCopy, since that should be available - on most modern Windows Systems. + on most modern Windows systems. options: src: description: @@ -84,6 +84,12 @@ EXAMPLES = r''' src: C:\DirectoryOne dest: C:\DirectoryTwo flags: /E /PURGE /XD SOME_DIR /XF SOME_FILE /MT:32 + +- name: Sync one file from a remote UNC path in recursive and purging mode, specifying additional special flags + win_robocopy: + src: \\Server1\Directory One + dest: C:\DirectoryTwo + flags: file.zip /E /PURGE /XD SOME_DIR /XF SOME_FILE /MT:32 ''' RETURN = r'''