Puppet Class: almalinux_hardening::system::auditd::priority
- Defined in:
- manifests/system/auditd/priority.pp
Summary
Enable Auditing for Processes Which Start Prior to the Audit DaemonOverview
Puppet Module to perform AlmaLinux 8 OS Hardening with CIS benchmark. Copyright © 2022 Jonas Hügli
21 22 23 24 25 26 27 |
# File 'manifests/system/auditd/priority.pp', line 21
class almalinux_hardening::system::auditd::priority {
if $almalinux_hardening::enable_auditd_priority {
kernel_parameter { 'audit=1':
ensure => present,
}
}
}
|