2023-03-10 15:19:52 +00:00
|
|
|
## Ansible controlled file
|
2023-08-08 18:53:23 +01:00
|
|
|
# Added as part of ansible-lockdown CIS baseline
|
2024-12-04 11:31:42 +00:00
|
|
|
# provided by Mindpoint Group - A Tyto Athene Company
|
2023-03-10 15:19:52 +00:00
|
|
|
### YOUR CHANGES WILL BE LOST!
|
2022-07-25 14:53:05 +01:00
|
|
|
|
|
|
|
|
# This file contains users whose actions are not logged by auditd
|
2023-08-08 18:53:23 +01:00
|
|
|
{% if rhel9cis_allow_auditd_uid_user_exclusions %}
|
2022-07-25 15:25:39 +01:00
|
|
|
{% for user in rhel9cis_auditd_uid_exclude %}
|
2022-07-25 16:41:57 +01:00
|
|
|
-a never,user -F uid!={{ user }} -F auid!={{ user }}
|
2022-07-25 14:53:05 +01:00
|
|
|
{% endfor %}
|
2022-09-16 14:08:16 +01:00
|
|
|
{% endif %}
|