From 83b45ae047d59a71d100af8076fd286aa202197c Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Tue, 22 Dec 2015 15:21:06 +0100 Subject: [PATCH] Fix doc inconsistency (#2630) --- lib/ansible/modules/files/copy.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ansible/modules/files/copy.py b/lib/ansible/modules/files/copy.py index 122d9808472..8d4789fc955 100644 --- a/lib/ansible/modules/files/copy.py +++ b/lib/ansible/modules/files/copy.py @@ -79,10 +79,10 @@ options: version_added: "1.5" remote_src: description: - - 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: [ "True", "False" ] + - 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. + choices: [ "yes", "no" ] required: false - default: "False" + default: "no" version_added: "2.0" extends_documentation_fragment: - files