4
0
Fork 0
RHEL9-CIS/templates/audit/98_auditd_exception.rules.j2
Mark Bolwell 33969e2a8a
Updated company naming
Signed-off-by: Mark Bolwell <mark.bollyuk@gmail.com>
2024-12-04 11:31:42 +00:00

11 lines
403 B
Django/Jinja

## Ansible controlled file
# Added as part of ansible-lockdown CIS baseline
# provided by Mindpoint Group - A Tyto Athene Company
### 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 %}