RHEL9-CIS/templates/audit/98_auditd_exception.rules.j2
Mark Bolwell 58d3bb4e41
updated var naming
Signed-off-by: Mark Bolwell <mark.bollyuk@gmail.com>
2023-03-01 09:17:38 +00:00

8 lines
306 B
Django/Jinja

## This file is managed by Ansible, YOUR CHANGES WILL BE LOST!
# This file contains users whose actions are not logged by auditd
{% if rhel9cis_allow_auditd_uid_user_exclusions %}
{% for user in rhel9cis_auditd_uid_exclude %}
-a never,user -F uid!={{ user }} -F auid!={{ user }}
{% endfor %}
{% endif %}