| name | files_acl |
| description | Maintains the ansible/roles/files_acl Ansible role that applies POSIX ACL entries to paths via ansible.posix.acl, as part of the Linux SOE. Use when checking or fixing filesystem ACLs on specific paths. |
files_acl
Maintains ansible/roles/files_acl/. See docs/ARCHITECTURE.md for the shared
conventions (role layout, audit vs. remediate via --check --diff, safety
rules, branch + PR contribution workflow).
ansible/roles/files_acl/README.md documents this role's full
configuration surface (every defaults/main.yml variable, with its
original inline comments, rendered as a single reference). Read it
before proposing or explaining how to configure this role — it
reflects the role's actual current defaults even if a variable summary
elsewhere in this file has drifted out of sync with the role.
What the role actually does
Encoded in ansible/roles/files_acl/defaults/main.yml:
This is a low-level, list-driven building block used both directly (a host
sets files_acl in group_vars/host_vars) and indirectly (e.g. certificates
includes files_remove internally for its exclusive-mode cleanup). Default
is always an empty list — no-op until something sets it.
- Each entry maps directly onto
ansible.posix.acl parameters (path,
entity, etype, permissions, state). Result registered as
acl_files.
This role is sourced from the myllynen/rhel-ansible-roles import
(see git log -- ansible/roles/files_acl) rather than hand-authored for this
repo. Unlike the original reference domains (e.g. timesync, usbguard_setup),
it applies state declaratively via standard Ansible modules and does not
add its own assert-based drift checks on top — an audit here is exactly
what --check --diff reports from the underlying modules, nothing more.
What to do
This role is not referenced by any playbook in ansible/ right now —
not configure_rhel.yml (not even commented out), not
load_balancer_setup.yml/nfs_client_setup.yml/nfs_server_setup.yml/
update_rhel.yml. There is currently no ansible-playbook command that will
invoke files_acl in this repo. Before running it, either:
- Add it to an existing playbook — most often
ansible/configure_rhel.yml's roles: list (uncomment-style, with a
vars: entry for files_acl set to what's actually needed), if what's wanted is
a permanent, repeatable part of the host baseline; or
- Write a small ad hoc playbook for the one-off task, same shape as
ansible/load_balancer_setup.yml/ansible/nfs_client_setup.yml (a
vars: block plus a roles: [files_acl] list), if it's a one-time or
host-class-specific job that doesn't belong in the general baseline.
Either way, propose it via the branch + PR workflow below rather than running
an untracked local playbook against a real host. Once wired in, audit/remediate
the same way as any other role — --tags files_acl against whichever playbook now
contains it, --check --diff first:
ansible-playbook ansible/<playbook>.yml --tags files_acl --check --diff # audit
ansible-playbook ansible/<playbook>.yml --tags files_acl # remediate
Propose a change to the role itself: never edit and commit directly. On a
branch named soe/files_acl/<short-desc>, edit ansible/roles/files_acl/, validate
locally (--syntax-check, ansible-lint roles/files_acl/, and
--check --diff against a real/test host if available), then push and open a
PR titled [files_acl] <what changed> with the --check --diff output in the
body. Then stop — a human reviews and merges; see docs/ARCHITECTURE.md's
"Contribution workflow".
Wiring into the SOE
This role has a row in .claude/skills/soe/SKILL.md's domain table, but (see
"What to do" above) is not currently included in any playbook in this repo —
neither the general baseline (ansible/configure_rhel.yml) nor any of the
composite playbooks. This repo no longer uses ansible/site.yml; see
docs/ARCHITECTURE.md.