summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorBrian Coca <bcoca@users.noreply.github.com>2022-10-28 19:17:13 -0400
committerGitHub <noreply@github.com>2022-10-28 16:17:13 -0700
commit25f8b9829dd42c013e8a84a0868c22829db2ce27 (patch)
tree409cf3f8e731b3962e4305c3a285950c45d69647 /lib
parent5c8928fa44286e159a0ad7e4707d5944cd5edb7f (diff)
downloadansible-25f8b9829dd42c013e8a84a0868c22829db2ce27.tar.gz
mention acl in permissions errors (#79209) (#79251)
as chmod/mode is not the only thing we attempt and Ubuntu not shipping acl in newer versions can lead to some confusion fixes #79146 (cherry picked from commit 0f18ddca9f4b04cacd85a8a54a6fcc8f8b2ee38e)
Diffstat (limited to 'lib')
-rw-r--r--lib/ansible/plugins/action/__init__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/ansible/plugins/action/__init__.py b/lib/ansible/plugins/action/__init__.py
index 9ee9a1c122..52795eb8e2 100644
--- a/lib/ansible/plugins/action/__init__.py
+++ b/lib/ansible/plugins/action/__init__.py
@@ -660,7 +660,7 @@ class ActionBase(ABC):
res = self._remote_chmod(remote_paths, 'u+x')
if res['rc'] != 0:
raise AnsibleError(
- 'Failed to set file mode on remote temporary files '
+ 'Failed to set file mode or acl on remote temporary files '
'(rc: {0}, err: {1})'.format(
res['rc'],
to_native(res['stderr'])))
@@ -675,9 +675,9 @@ class ActionBase(ABC):
if remote_user in self._get_admin_users():
raise AnsibleError(
'Failed to change ownership of the temporary files Ansible '
- 'needs to create despite connecting as a privileged user. '
- 'Unprivileged become user would be unable to read the '
- 'file.')
+ '(via chmod nor setfacl) needs to create despite connecting as a '
+ 'privileged user. Unprivileged become user would be unable to read'
+ ' the file.')
# Step 3d: Try macOS's special chmod + ACL
# macOS chmod's +a flag takes its own argument. As a slight hack, we