You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When there is a file in the folder to be modified, the output of setfacl --test returns *,* for every file in that folder hierarchy, thus actively preventing the ACLs from being applied:
SUMMARY
I would like to recursively apply a default ACL but nothing happens, i.e. Ansible says there is nothing to change which is obviously wrong.
ISSUE TYPE
COMPONENT NAME
ansible.posix.acl
ANSIBLE VERSION
COLLECTION VERSION
CONFIGURATION
OS / ENVIRONMENT
Endeavour OS
STEPS TO REPRODUCE
data
ansible.posix.acl
with the following parameters"user:data:rwx is present"
), which is wrong:EXPECTED RESULTS
I expect the default ACL to be set for the user named
data
.ACTUAL RESULTS
The ACLs have not changed.
I think this is caused because of the following line which checks for the presence of
*,*
in the command output ofsetfacl --test
:ansible.posix/plugins/modules/acl.py
Line 247 in c654bf0
When there is a file in the folder to be modified, the output of
setfacl --test
returns*,*
for every file in that folder hierarchy, thus actively preventing the ACLs from being applied:The text was updated successfully, but these errors were encountered: