recursive copy is not available(yet) on remote_src

This commit is contained in:
Brian Coca 2016-02-15 08:13:54 -05:00 committed by Matt Clay
parent 1b642fcf75
commit bbfb957bc1

View file

@ -79,8 +79,9 @@ options:
version_added: "1.5" version_added: "1.5"
remote_src: remote_src:
description: description:
- If set to no, it will search for src at originating/master machine, if set to yes it will go to the remote/target machine for the src. Default is no. - If False, it will search for src at originating/master machine, if True it will go to the remote/target machine for the src. Default is False.
choices: [ "yes", "no" ] - Currently remote_src does not support recursive copying.
choices: [ "True", "False" ]
required: false required: false
default: "no" default: "no"
version_added: "2.0" version_added: "2.0"