From 7b0f765a57e0214ca6490ad337be99f55ef73888 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Wed, 15 Mar 2017 09:35:43 -0400 Subject: [PATCH] made error slightly more neutral in case of 'local' --- lib/ansible/plugins/action/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/plugins/action/__init__.py b/lib/ansible/plugins/action/__init__.py index 83a73be381..736a9cab02 100644 --- a/lib/ansible/plugins/action/__init__.py +++ b/lib/ansible/plugins/action/__init__.py @@ -266,7 +266,7 @@ class ActionBase(with_metaclass(ABCMeta, object)): output = result['stderr'] else: output = ('Authentication or permission failure.' - ' In some cases, you may have been able to authenticate and did not have permissions on the remote directory.' + ' In some cases, you may have been able to authenticate and did not have permissions on the target directory.' ' Consider changing the remote temp path in ansible.cfg to a path rooted in "/tmp".' ' Failed command was: %s, exited with result %d' % (cmd, result['rc'])) if 'stdout' in result and result['stdout'] != u'':