From 8a5f162e29f45ce427606706f7e3908ec4ca2bda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Gross?= Date: Fri, 20 Mar 2015 16:45:54 +0100 Subject: [PATCH] [patch] fix "remote_src" behavior according patch module documentation. Patch documentation says "remote_src" us False by default. That was not the case in the action plugin. --- lib/ansible/runner/action_plugins/patch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/runner/action_plugins/patch.py b/lib/ansible/runner/action_plugins/patch.py index dbba4c53dd..ebd0c6cf59 100644 --- a/lib/ansible/runner/action_plugins/patch.py +++ b/lib/ansible/runner/action_plugins/patch.py @@ -32,7 +32,7 @@ class ActionModule(object): src = options.get('src', None) dest = options.get('dest', None) - remote_src = utils.boolean(options.get('remote_src', 'yes')) + remote_src = utils.boolean(options.get('remote_src', 'no')) if src is None: result = dict(failed=True, msg="src is required")